Data Types in Python
Jason Myers
Instructor
True
False
Notice the capitalization as this can trip you up when switching between Python and other languages.
out_of_cookies = True
if out_of_cookies:
print("Run to the store NOW!")
Run to the store NOW!
apples=2
if apples:
print("We have apples.")
"We have apples."
apples=0
if apple:
print('We have apples.')
1
"Cookies"
["Cake", "Pie"]
{"key": "value"}
0
""
[]
{}
None
cookie_qty == 3
==
equal to!=
not equal to<
less than<=
less than or equal to>
greater than>=
greater than or equal tox = 0.1 + 1.1
x == 1.2
False
print(x)
1.2000000000000002
Be careful with equality comparisons of floats!
Data Types in Python