Python Notes
Python Notes
LESSON 2
LESSON 3
if --- if statement
elif --- short for else if
else --- if something other than the the if occurred
== --- is exactly
!= --- is not
> --- is bigger than
< --- is smaller than
>= --- is bigger than or equal to
<= --- is smaller than or equal to
LESSON 4