When making an 'if' statement in Python, we have the option to use if boolean:
, without making an explicit comparison (which is not mandatory)
The question is: what is the default comparison in this case? Is if x:
equivalent to if x == True
or if x is True
?