Integer
whole number
String
text data
Boolean
true or false
float
whole number with a decimal point
comment
#
print statement
print(“ “)
variable
variable = something
floor division
//
modulus
%
addition
+
subtraction
-
multiplication
*
division
/
equal to
==
not equal to
!=
greater than
>
less than
<
greater than or equal to
> =
less than or equal to
<=
logical and
and
logical or
or
if statements
if …:
elif ….:
else:
random
(random.randint(0,10))
array
special object used to store a list of variables of the same data type