False
boolean
true
boolean
None
no data
strings
data in “ “
letters, numbers and symbols
each character in a string is assigned a value from 0
numbers
whole numeric values
2
floats
decimal numeric values
2.25
integers
int
positive or negative whole numbers
modulo
mod
returns the remainder of a division
i.e. 3%2 will return 1. this is because 2 go into 3 once with one remaining (remember the remainder is what modulo is interested in)
lists
The list is a most versatile datatype available in Python which can be written as a list of comma-separated values (items) between square brackets. Good thing about a list is that items in a list need not all have the same type.