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