Result Size: 625 x 571
โ€‹x
 
x = None
โ€‹
if x:
  print("Do you think None is True?")
elif x is False:
  print ("Do you think None is False?")
else:
  print("None is not True, or False, None is just None...")
โ€‹

None is not True, or False, None is just None...