Extend
print ( ) is used to output text
input( ) is used to get the user to type something
Variables store values that can change.
https://www.w3schools.com/python/python_for_loops.asp
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....