What will this code print?
print ("foo" if (256).bit_length() > 8 else "bar")
bar
You will get an error message because constant integer values are not classes.
True
foo