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