Possible Duplicate:
Why can’t Python handle true/false values as I expect?
Seems a stupid question, but why is the following statement in Python not explicitly forbidden?
>> True=False
>> True
False
How is True
and False
handled by Python interpreter?