Lesson 08: Cheat Sheet

if x == 0:
print (“x=0”)
if x==1:
print (“x=1”)
else:
print (“x is something other than 0 or 1”)