Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
This is not stupid in the slightest! – ValekHalfHeart Nov 15 '12 at 16:19

marked as duplicate by Paolo Moretti, SilentGhost, wRAR, Junuxx, Al G Nov 16 '12 at 13:31

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

True, just like str or any other builtin, is just a name that exists in the scope by default. You can rebind it like any other such name.

share|improve this answer
Actually the OP creates __main__.True. __builtin__.True is still accessible – J.F. Sebastian Nov 15 '12 at 16:18
2  
None = 42 results in a SyntaxError. Why doesn't the same logic apply to that name? – martineau Nov 15 '12 at 17:31
@martineau: it does apply. True/False are keywords in Python 3. btw, you can assign to None in Python 2.3 – J.F. Sebastian Nov 16 '12 at 5:18
@J.F.Sebastian: I don't think you answered my question (which was directed @wRAR anyway). If None is just another name, why can't I assign some other value to it as is possible with the names True and str? – martineau Nov 16 '12 at 7:14
@martineau: None, True, False are keywords in Python 3 so you can't rebind them any more. But historically you could: None -- before Python 2.4 (None was special constant before Python 3.0), True/False -- before Python 3.0. str is just another name, you can rebind it. – J.F. Sebastian Nov 16 '12 at 11:13
show 1 more comment

Python actually has very few reserved words. All the rest are subject to redefinition. It's up to you to be careful!

share|improve this answer
3  
Question was about 2.7, but just sayin' that in 3.x True and False are included as reserved words and CANNOT be defined. – user1632861 Nov 15 '12 at 16:14
@Mahi, that's welcome news. – Mark Ransom Nov 15 '12 at 16:15
>>> True = False
False

In the above assignment, True is just a variable like any other variable you use. Its scope is limited to the current scope. So you can assign any values to it like in the below example. Note that the comparison 2 < 3 still prints True, because you have still access to builtin.

>>> True = 3
>>> True
3
>>> 2 < 3
True
share|improve this answer

Typing

True = False

you create a new variable called True, which value you assign to False.

Answering your second question, True and False are customized versions of integers 1 and 0 (technically speaking, subclasses), which just have a different string representation.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.