Extend
print ( ) is used to output text
input( ) is used to get the user to type something
Variables store values that can change.
len( word ) returns how long it is
.upper() turns it to upper case
.lower() turns it to lower case
variable[x] returns the letter at position x
int( string) turns it to a string (if possible)
float (string) turns it to a float (if possible)
str (variable) turns it to a string " "
Boolean: a data type that can hold one of two values (true or false)
== Symbol: Compares if both values are the same
>= Symbol: Greater than or equal to
<= Symbol: Less than or equal to
(indent) program here....
for varName in range (start, end, increment):
(indent) program here....