📺 Develpreneur YouTube Episode

Video + transcript

Python Certification Training - If,Else, Elif

2021-06-29 •Youtube

Detailed Notes

The certification series covers if, if-else,if-elif, and if-elif-else in this session.

Helpful links: https://www.tutorialsteacher.com/python/python-if-elif

Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/

Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries

Transcript Text
[Music]
hello and welcome back
we are continuing our certifications
series in python
and today we're going to get into ifs
and else and else ifs and
all kinds of other good stuff we're
actually going to start
sort of working a little bit more
applications as opposed to just really
quick
sort of script kind of things that we've
done to this point and
this one we're gonna actually is always
it will be out in the github repository
when we're done
i have jumped ahead just a little bit
uh so what we're looking at is we're
going to cover if we're going to do if
else we're going to use if alif
if lfs else so we've got this little
example and let me do this
so i have a little bit of a little bit
better formatting maybe we've done so
far
so what i'm going to do and this is some
of these are things we've already seen
so we're going to start building these
into
and reusing them as we go through some
of these uh applets
basically that we'll be we'll be
building out as we go
so this one we're going to use input
that we talked about previously
this will allow us to get input from the
console
and we're just going to ask the user to
provide an hour of the day we're going
to suggest it's between 1
and 24 and we're not going to put any
validation or something that may come
later
but right now we're going to stick with
this so they're going to enter a number
between 1
and 24. actually we'll even make it
between 0 and 24. it doesn't really
matter
and this is some of the things that we
can do
we can show a little bit of logic around
building applications as well so first
we're going to do is we're going to say
there's this greeting and it will be
good evening
and uh oops i need to do this
and uh what we do well and i just move
this but
uh since we're just gonna print out the
greeting and we're gonna have little
wine feeds before it
now because of the if so if we don't do
anything
uh let me switch over here and we're
actually let me do this so we can see a
little better
so okay so provide the other day let me
do uh
so this will be six o'clock in the
evening it's going to say good evening
if i do the same thing and i six o'clock
in the morning it still says good
evening
so obviously a perfect example
of where we can use some logic so the
first thing we're going to do is we're
going to say
if and then we have to take the value
that we get
we have to convert it to an inch because
remember it doesn't like comparing
strings
and integers and so we're just going to
say if it's less than or equal to 12 so
if it's less than noon
we're going to say good morning so
notice that if it's pretty
straightforward there's no then or
anything like that it's just
an if statement right here
and then you're going to have whatever
it's checking and then a colon
and then underneath it is going to be
indented
notice here i come back out there's no
end if or anything like that
this thing is because it is
left you know it's at the same level as
the if it assumes that it's going to be
um outside of the f so the if is already
completed if i were to just move this in
so then that means that i'm not going to
get the greeting if
unless the value is less than 12. so
we'll look at that real quick
so here if i go back and i do that value
of 18
it just goes to application in it it
does not print but if i do six
it does print good morning so
i need to make sure that this part is
going to be outside of that if statement
so we've got an if here now let me do an
if
else so let's say um
let's do this if it's less than
we'll start with evening so we'll see if
it's less than 10
it's gonna be
actually let's just say well this one it
doesn't really matter because it's never
going to say this so let's just do this
let's say good afternoon
and if it's less than 10 then
it's going to be actually we could do ah
we'll do it this way it's gonna say good
morning
otherwise
it's gonna say good evening
and notice now
that if we do in the morning it says
good morning
if we do noon it's going to say good
evening
if we do 10 o'clock at night
which is what 22 then it still says good
evening we never see good day
uh come back here
so we really want is let's say if we're
going to do afternoon morning and
evening
then we're going to do an lf
so here we're going to say if it's
let's get rid of this if it is less than
or equal to 10 we're going to say good
morning
else if so if it's not less than equal
to 10 if it is
greater than equal to let's say
17 so 5 o'clock or later it's going to
say
good evening otherwise it's going to say
good afternoon
i'll move this around a little bit so
now
what we'll see is if we do it early in
the morning at 5 a.m
it says good morning if we do it at 10
a.m
it's done the same morning because i
moved that to 11 but if i do
uh 11 oh sorry
uh if we do 11 and it says
uh good morning because it was equal to
but if i do noon
now it's going to say good afternoon
even though it's noon and then if i do
uh the evening let me do seven o'clock
at night
now it says good evening
so an l if much like
an if underneath it
it's going to be out notice this out at
the same indentation level as
if it also like if has
its um you know it has whatever it's
checking has its
its validation the if part of it that
logic
and then of course you have things
underneath it here so this
because this backs out here that's the
end of the if
whenever i get something back to else
level or lift level
then it's going to be back at that level
so i could say
um let's just do this
we're going to do error
and so now we're going to add an else to
the end
and we're going to take that and this
will be
good afternoon or we'll say good day
so if we do an if else uh if
lf else then here
again notice we're we're indenting as
needed and then we're out denning
uh to sort of wrap the uh to complete
the thought
for the ifs and the lefts and elses in
this case what we're going to do is
we're going to say
if it's less than or equal to
um let's say 10 okay so it's less than
that or equal to it's going to be good
morning
else if it's greater than or equal to 17
it's going to be good evening and then
if there's anything else we're just
going to say good day
so here we're actually overwriting
greeting no matter what so if for some
reason
this bails out completely we would get
an error
so if we go back to and if we do it at
say 1 a.m
it's going to say good morning if we do
it at noon
it says good day if we do it at
six o'clock it says good evening
and so now we've put together we can put
together something moderately
complicated here now we actually made
this one pretty simple because these are
um mutually exclusive you can't be less
than equal to 10
and greater than or equal to 17. but we
can do
this so we can say if it's less than
let's say if it's less than 10 it's
going to say good morning
else
so let's say if it's less than 17
it's going to say good day otherwise
it's going to say good evening
and so now we can actually do multiple
lifts
so here we can say
if it's equal to 12.
uh let's see we're gonna say it is noon
so no so here good day
less than 17 it's not going to get there
because it's going to actually be hit
here and then essentially bail out
so let's take a look at that so we've
got 10 12 and
let's play with these a little bit so
the first thing we do is we come in if
it's one in the morning
it says good morning easy enough if we
say 10
then it's good day because
uh it's not less than 10. it's actually
equal to 10.
if we do noon it says it's noon because
it comes through here and it says if
it's less than 10 good morning
otherwise if it's equal to 12 it's noon
otherwise if it's less than 17 we're
gonna say good day so actually
we can go see where if we use 11 it
still says good day
because here it's greater than 10 it's
not equal to 12 but it's
less than 17. this is where order can be
very important if i were to switch this
this lift then what's going to happen is
it will always
handle the if less than 10 then if less
than 17
the 12 never gets here because the 12
was already covered
by the 17 by the less than 17. so we
would actually never see it
in that case so it's important to
realize that these end the elifs
end if it's if it's true so it does its
thing and then it gets out
and so then going back to this if we do
at the end of the day
then it's just going to say good evening
so it's important to note um
let's do this note that
elif ends series
if true
and note we can have
multiple alif's
lf sections
notice here if i do else
bad day if i do two elses
it's going to tell me here that's an
invalid syntax here on the 19. so it
comes in and says
you can't have that you also
cannot do an else among the elifs
see because it's going to blow up on
slide 17 which it says oh okay you were
done oh wait a minute
because basically this if the once you
get to the else you're going to be
tying up you're going to ending this if
block
so that means this lift doesn't have an
if to tie itself at this point
and those are the kind of things you're
going to run into in particular
because of some of the other logical
constraints that we're going to talk
about
at some point as we're going through
this
you need you almost need the lifts but
you also need to
be able to to keep in line the logic
that you're actually walking through is
realizing this is a
if step one else step two l step three
and those
or say check one check two check three
where each of those
checks in this case only
is hit if the prior one uh fails
once it's true so here if it's good
morning it didn't even check
any of this stuff which from a speed
point of view is great that means you
could have a really long list
and the only time that the whole list
gets walked is when you get down to the
last value so if i did
let's say if it's less than one then if
that's less than two if it's less than
three if
you know all the way down so i could
have a whole bunch of lifs
then the only one that would execute all
of them in this case would be when i get
to 24 basically so if i get less than 24
or just
you know at some point at the end i may
have 20
you know 20 something if lift
combinations of you know series of
commands here but i'm normally not going
to run through them it's only going to
be when i have to
run all the way through it
so those are the the key points of that
um i think what i want to
do with this one and i do want to touch
on
uh some of the things we're going to be
doing next
now we've talked about because we're
going to be sort of building
an application out of this and i don't
want to get too deep
in but i do want to talk about um you
know
highlight a couple of things now one
we've talked about this formula make
sure we understand that we can build
strings using our
using our pluses or we actually can do
it with our asterisk as well because
remember we could do multiples
of those so if i did
print uh
a times five
then it's going to print out oh i gotta
do it with parentheses though
it's gonna print out five a's
so whatever number i do we can see where
it's just my five a's so
we can build strings that way we also
have our formats so i could say
so the greeting could be
good like that
and then i could have the second part
let's say the second part
is uh
oh let's just call it day text and i'll
use a little thing there
so day text could be and we'll start
with
we'll just say it's blank and then here
a text equals morning
it's not going to be quite as clean
because the way we're doing it
but just to show that we can build
strings out of this
in a formatting but we can also do them
uh
through our pluses and such and so here
this would be
uh let's do greeting dot
format and then give it the day text
and i should spell day text right
instead of day next
i can get rid of my multiples of fives
let's just comment that out
and so now there we go so i get my good
morning
or i get my good evening or whatever it
is
so we've been able to walk through these
and we're gonna start building out and
working on our strings that'll be part
of our ifs so note that
as we're going through this although we
have
i'm trying to build this out so we sort
of cover specific items throughout the
certification
so you could potentially jump in at any
given point
uh it may be easier to follow this you
know in order
because there's going to be things that
we may sort of gloss over
that and we were actually covered in a
prior
episode of prior session so we're going
to work
start working into the the logics and
loops and things like that so this is
we're going to continue working on our
little application next time around
so i'm gonna i'll leave it like that for
now
i think that's a good point to stop just
because the next bun chunk will be
a sizable enough chunk we're gonna get
into some next one actually probably do
uh vectors and indexing and slicing and
length and so we're gonna
we're gonna parse our uh we're gonna
make this a little more than
telling them to do a number and we're
gonna actually be able to do something
like
you know uh 12 35 or something like that
i'm even doing am or pm with it so
that'll be coming next i just want to
wrap this one up
again this is stuff that if it's new to
you
it will probably become more comfortable
as we go on because we're going to just
keep
we're going to see a lot of repetition
we've already seen ifs and else elsa's
before
we're going to see more of this and a
lot of it when you
as you saw with some of the stuff i was
playing around with the key is always
going to be
understand where your
tabs are basically what your your format
is where your index
indents are or not because python is
very indent
sensitive that being said i'll let you
get to it so go out there have yourself
a great day
a great week and we will talk to you
next time
you
Transcript Segments
0.46

[Music]

26.16

hello and welcome back

27.599

we are continuing our certifications

29.76

series in python

31.679

and today we're going to get into ifs

34.48

and else and else ifs and

36.88

all kinds of other good stuff we're

39.52

actually going to start

41.52

sort of working a little bit more

42.64

applications as opposed to just really

44.32

quick

44.8

sort of script kind of things that we've

46.079

done to this point and

48.32

this one we're gonna actually is always

50.559

it will be out in the github repository

52.719

when we're done

54.16

i have jumped ahead just a little bit

57.52

uh so what we're looking at is we're

59.28

going to cover if we're going to do if

60.719

else we're going to use if alif

62.399

if lfs else so we've got this little

66

example and let me do this

69.439

so i have a little bit of a little bit

72.4

better formatting maybe we've done so

73.84

far

75.04

so what i'm going to do and this is some

76.64

of these are things we've already seen

77.92

so we're going to start building these

79.36

into

80.4

and reusing them as we go through some

82.159

of these uh applets

84

basically that we'll be we'll be

85.36

building out as we go

87.6

so this one we're going to use input

89.2

that we talked about previously

90.96

this will allow us to get input from the

93.119

console

94.159

and we're just going to ask the user to

95.68

provide an hour of the day we're going

97.36

to suggest it's between 1

98.88

and 24 and we're not going to put any

102

validation or something that may come

103.28

later

103.92

but right now we're going to stick with

106.32

this so they're going to enter a number

107.68

between 1

108.479

and 24. actually we'll even make it

110.96

between 0 and 24. it doesn't really

112.84

matter

114.24

and this is some of the things that we

116.56

can do

117.36

we can show a little bit of logic around

119.119

building applications as well so first

121.04

we're going to do is we're going to say

121.84

there's this greeting and it will be

123.28

good evening

125.68

and uh oops i need to do this

130.64

and uh what we do well and i just move

132.879

this but

133.84

uh since we're just gonna print out the

135.44

greeting and we're gonna have little

136.8

wine feeds before it

138.56

now because of the if so if we don't do

141.52

anything

144

uh let me switch over here and we're

147.12

actually let me do this so we can see a

150.08

little better

151.84

so okay so provide the other day let me

153.68

do uh

155.599

so this will be six o'clock in the

157.04

evening it's going to say good evening

159.04

if i do the same thing and i six o'clock

160.879

in the morning it still says good

162.64

evening

163.36

so obviously a perfect example

166.64

of where we can use some logic so the

168.56

first thing we're going to do is we're

169.519

going to say

170.319

if and then we have to take the value

173.04

that we get

174.319

we have to convert it to an inch because

176.16

remember it doesn't like comparing

177.36

strings

178

and integers and so we're just going to

180.239

say if it's less than or equal to 12 so

182.239

if it's less than noon

183.36

we're going to say good morning so

186.56

notice that if it's pretty

188.239

straightforward there's no then or

189.68

anything like that it's just

190.879

an if statement right here

194.319

and then you're going to have whatever

195.92

it's checking and then a colon

198.48

and then underneath it is going to be

201.44

indented

202.72

notice here i come back out there's no

205.04

end if or anything like that

206.959

this thing is because it is

210.64

left you know it's at the same level as

212.159

the if it assumes that it's going to be

216.319

um outside of the f so the if is already

218.239

completed if i were to just move this in

220.879

so then that means that i'm not going to

222.56

get the greeting if

224

unless the value is less than 12. so

225.84

we'll look at that real quick

228.159

so here if i go back and i do that value

230.159

of 18

231.599

it just goes to application in it it

233.12

does not print but if i do six

236.4

it does print good morning so

241.36

i need to make sure that this part is

244.239

going to be outside of that if statement

248

so we've got an if here now let me do an

250.879

if

251.36

else so let's say um

256.079

let's do this if it's less than

259.519

we'll start with evening so we'll see if

261.12

it's less than 10

263.199

it's gonna be

266.72

actually let's just say well this one it

270.32

doesn't really matter because it's never

271.36

going to say this so let's just do this

272.56

let's say good afternoon

276.32

and if it's less than 10 then

279.52

it's going to be actually we could do ah

280.88

we'll do it this way it's gonna say good

282.639

morning

283.28

otherwise

286.639

it's gonna say good evening

291.44

and notice now

296.08

that if we do in the morning it says

298.639

good morning

299.36

if we do noon it's going to say good

302.88

evening

303.36

if we do 10 o'clock at night

306.96

which is what 22 then it still says good

310.56

evening we never see good day

313.44

uh come back here

317.039

so we really want is let's say if we're

319.36

going to do afternoon morning and

320.72

evening

321.84

then we're going to do an lf

327.36

so here we're going to say if it's

330.479

let's get rid of this if it is less than

332.32

or equal to 10 we're going to say good

333.68

morning

334.56

else if so if it's not less than equal

336.32

to 10 if it is

338.479

greater than equal to let's say

342.88

17 so 5 o'clock or later it's going to

345.44

say

346.08

good evening otherwise it's going to say

348.72

good afternoon

352.32

i'll move this around a little bit so

354.24

now

356.24

what we'll see is if we do it early in

358.479

the morning at 5 a.m

359.759

it says good morning if we do it at 10

362.4

a.m

362.88

it's done the same morning because i

364.4

moved that to 11 but if i do

366.08

uh 11 oh sorry

370.72

uh if we do 11 and it says

374.56

uh good morning because it was equal to

376.56

but if i do noon

380.72

now it's going to say good afternoon

382.08

even though it's noon and then if i do

384.8

uh the evening let me do seven o'clock

386.8

at night

388.08

now it says good evening

391.84

so an l if much like

395.199

an if underneath it

398.24

it's going to be out notice this out at

399.68

the same indentation level as

401.68

if it also like if has

405.6

its um you know it has whatever it's

408.08

checking has its

409.28

its validation the if part of it that

411.36

logic

412.479

and then of course you have things

413.68

underneath it here so this

415.919

because this backs out here that's the

418.8

end of the if

419.919

whenever i get something back to else

421.68

level or lift level

423.28

then it's going to be back at that level

425.44

so i could say

431.44

um let's just do this

434.479

we're going to do error

437.52

and so now we're going to add an else to

439.199

the end

446.56

and we're going to take that and this

449.68

will be

450.56

good afternoon or we'll say good day

456.72

so if we do an if else uh if

459.84

lf else then here

463.12

again notice we're we're indenting as

465.52

needed and then we're out denning

467.28

uh to sort of wrap the uh to complete

470

the thought

470.96

for the ifs and the lefts and elses in

473.84

this case what we're going to do is

474.879

we're going to say

475.599

if it's less than or equal to

478.72

um let's say 10 okay so it's less than

481.919

that or equal to it's going to be good

483.199

morning

484.319

else if it's greater than or equal to 17

487.84

it's going to be good evening and then

489.28

if there's anything else we're just

490.319

going to say good day

491.52

so here we're actually overwriting

492.879

greeting no matter what so if for some

494.8

reason

495.919

this bails out completely we would get

497.599

an error

499.599

so if we go back to and if we do it at

502.8

say 1 a.m

503.759

it's going to say good morning if we do

506.479

it at noon

507.36

it says good day if we do it at

510.8

six o'clock it says good evening

518.08

and so now we've put together we can put

520.24

together something moderately

522.159

complicated here now we actually made

525.68

this one pretty simple because these are

528.32

um mutually exclusive you can't be less

531.2

than equal to 10

532.08

and greater than or equal to 17. but we

535.2

can do

536.88

this so we can say if it's less than

541.2

let's say if it's less than 10 it's

542.959

going to say good morning

546.839

else

551.12

so let's say if it's less than 17

559.76

it's going to say good day otherwise

563.36

it's going to say good evening

564.8

and so now we can actually do multiple

567.519

lifts

570.16

so here we can say

574.48

if it's equal to 12.

584.64

uh let's see we're gonna say it is noon

592.959

so no so here good day

596.32

less than 17 it's not going to get there

600.16

because it's going to actually be hit

602.32

here and then essentially bail out

604.48

so let's take a look at that so we've

605.839

got 10 12 and

608.24

let's play with these a little bit so

609.44

the first thing we do is we come in if

610.64

it's one in the morning

611.68

it says good morning easy enough if we

614.16

say 10

616.16

then it's good day because

619.839

uh it's not less than 10. it's actually

621.44

equal to 10.

623.2

if we do noon it says it's noon because

627.36

it comes through here and it says if

628.8

it's less than 10 good morning

630.16

otherwise if it's equal to 12 it's noon

633.279

otherwise if it's less than 17 we're

636

gonna say good day so actually

637.519

we can go see where if we use 11 it

640.48

still says good day

641.92

because here it's greater than 10 it's

643.839

not equal to 12 but it's

645.519

less than 17. this is where order can be

648.24

very important if i were to switch this

651.519

this lift then what's going to happen is

654.16

it will always

655.12

handle the if less than 10 then if less

658.079

than 17

660

the 12 never gets here because the 12

662

was already covered

663.279

by the 17 by the less than 17. so we

665.36

would actually never see it

666.72

in that case so it's important to

670.88

realize that these end the elifs

674

end if it's if it's true so it does its

677.12

thing and then it gets out

679.68

and so then going back to this if we do

682.32

at the end of the day

683.44

then it's just going to say good evening

686.959

so it's important to note um

690.32

let's do this note that

694.399

elif ends series

698.399

if true

702.399

and note we can have

705.839

multiple alif's

711.68

lf sections

716.16

notice here if i do else

721.519

bad day if i do two elses

726.16

it's going to tell me here that's an

727.76

invalid syntax here on the 19. so it

730.079

comes in and says

732.16

you can't have that you also

736.639

cannot do an else among the elifs

741.36

see because it's going to blow up on

742.48

slide 17 which it says oh okay you were

744.639

done oh wait a minute

746.639

because basically this if the once you

749.36

get to the else you're going to be

750.48

tying up you're going to ending this if

752.56

block

754.32

so that means this lift doesn't have an

756.24

if to tie itself at this point

762

and those are the kind of things you're

763.04

going to run into in particular

766.72

because of some of the other logical

768.72

constraints that we're going to talk

769.839

about

770.56

at some point as we're going through

773.12

this

774.8

you need you almost need the lifts but

777.76

you also need to

779.519

be able to to keep in line the logic

782.48

that you're actually walking through is

783.76

realizing this is a

785.44

if step one else step two l step three

788.24

and those

788.88

or say check one check two check three

791.279

where each of those

792.24

checks in this case only

795.839

is hit if the prior one uh fails

799.44

once it's true so here if it's good

801.839

morning it didn't even check

803.2

any of this stuff which from a speed

805.68

point of view is great that means you

806.88

could have a really long list

809.6

and the only time that the whole list

811.68

gets walked is when you get down to the

813.2

last value so if i did

816.399

let's say if it's less than one then if

818.399

that's less than two if it's less than

819.6

three if

820.16

you know all the way down so i could

822.32

have a whole bunch of lifs

824.8

then the only one that would execute all

826.48

of them in this case would be when i get

828.079

to 24 basically so if i get less than 24

830.88

or just

831.44

you know at some point at the end i may

833.519

have 20

835.199

you know 20 something if lift

838.16

combinations of you know series of

841.44

commands here but i'm normally not going

844.48

to run through them it's only going to

845.68

be when i have to

847.519

run all the way through it

850.56

so those are the the key points of that

854.839

um i think what i want to

858.32

do with this one and i do want to touch

860.959

on

862.32

uh some of the things we're going to be

863.44

doing next

865.44

now we've talked about because we're

867.76

going to be sort of building

869.76

an application out of this and i don't

872.72

want to get too deep

873.6

in but i do want to talk about um you

876.72

know

876.959

highlight a couple of things now one

879.44

we've talked about this formula make

880.72

sure we understand that we can build

882.24

strings using our

886.32

using our pluses or we actually can do

888.16

it with our asterisk as well because

890.16

remember we could do multiples

891.6

of those so if i did

894.72

print uh

898

a times five

902.079

then it's going to print out oh i gotta

904.48

do it with parentheses though

907.68

it's gonna print out five a's

918.8

so whatever number i do we can see where

920.32

it's just my five a's so

922.079

we can build strings that way we also

925.12

have our formats so i could say

931.839

so the greeting could be

934.88

good like that

939.12

and then i could have the second part

941.6

let's say the second part

942.959

is uh

948.079

oh let's just call it day text and i'll

950.72

use a little thing there

952.959

so day text could be and we'll start

955.68

with

956.16

we'll just say it's blank and then here

960.959

a text equals morning

968

it's not going to be quite as clean

969.68

because the way we're doing it

971.199

but just to show that we can build

974.079

strings out of this

976.8

in a formatting but we can also do them

980.839

uh

986.32

through our pluses and such and so here

989.36

this would be

995.199

uh let's do greeting dot

999.279

format and then give it the day text

1003.519

and i should spell day text right

1005.12

instead of day next

1007.839

i can get rid of my multiples of fives

1009.92

let's just comment that out

1013.36

and so now there we go so i get my good

1015.839

morning

1016.399

or i get my good evening or whatever it

1019.44

is

1020.88

so we've been able to walk through these

1024.4

and we're gonna start building out and

1026.16

working on our strings that'll be part

1027.839

of our ifs so note that

1029.679

as we're going through this although we

1031.6

have

1033.36

i'm trying to build this out so we sort

1035.199

of cover specific items throughout the

1037.039

certification

1038

so you could potentially jump in at any

1040.079

given point

1041.76

uh it may be easier to follow this you

1043.839

know in order

1045.12

because there's going to be things that

1046.079

we may sort of gloss over

1048.88

that and we were actually covered in a

1051.12

prior

1052.16

episode of prior session so we're going

1055.28

to work

1056

start working into the the logics and

1059.52

loops and things like that so this is

1060.96

we're going to continue working on our

1062.4

little application next time around

1065.039

so i'm gonna i'll leave it like that for

1067.36

now

1068.32

i think that's a good point to stop just

1070

because the next bun chunk will be

1072.24

a sizable enough chunk we're gonna get

1074.08

into some next one actually probably do

1076.08

uh vectors and indexing and slicing and

1078.16

length and so we're gonna

1079.52

we're gonna parse our uh we're gonna

1081.919

make this a little more than

1083.919

telling them to do a number and we're

1086

gonna actually be able to do something

1087.28

like

1087.84

you know uh 12 35 or something like that

1092.32

i'm even doing am or pm with it so

1095.28

that'll be coming next i just want to

1097.12

wrap this one up

1098.24

again this is stuff that if it's new to

1100.96

you

1101.36

it will probably become more comfortable

1103.44

as we go on because we're going to just

1105.039

keep

1106

we're going to see a lot of repetition

1107.28

we've already seen ifs and else elsa's

1109.12

before

1109.919

we're going to see more of this and a

1112.16

lot of it when you

1113.12

as you saw with some of the stuff i was

1114.559

playing around with the key is always

1116.08

going to be

1116.559

understand where your

1120.16

tabs are basically what your your format

1122.4

is where your index

1123.44

indents are or not because python is

1126.48

very indent

1127.84

sensitive that being said i'll let you

1130.08

get to it so go out there have yourself

1131.84

a great day

1132.48

a great week and we will talk to you

1135.28

next time

1151.6

you