True
True Boolean Value
Example:
True or False = True
False
False Boolean Value
Example:
False and True == False
None
Represents “nothing” or “no value”
Example:
x = None
bytes
stores bytes, maybe of text, PNG, file, etc.
Example:
x = b”hello”
strings
stores textual information
Example:
x = “hello”
numbers
Stores integers
Example:
i = 100
floats
Stores decimals
Example:
i = 10.389
lists
Stores lists of things
Example:
j = [1,2,3,4]
dicts
Stores a key=value mapping of things