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