Name the Text data types:
str
Name the Numeric data types:
int, float, complex
Name the Sequence data types:
list, tuple, range
Name the Mapping data types:
dict
Name the Set data types:
set, frozenset
Name the Boolean data types:
bool
Name the Binary data types:
bytes, bytearray, memoryview
What is the ‘int’ data type?
Int, or integer, represents positive or negative numbers without decimals.
What is the ‘float’ data type?
Positive or negative number containing one or more decimals.
What is the ‘complex’ data type?
Numbers written with a ‘j’ as the imaginary part
Does python have a random() function?
No
How do you create random numbers in Python?
Import ‘random’ module