If I have an boolean variable such as:
condition = True
And it is used in an if statement, is there any diference between the uses (other then readability)? For example:
if condition:
pass
if condition == True:
pass
if condition is True:
pass