tutorial.eyehunts.com
Python "is not True" same as "is False"?
Python "is not True" and "is False" is not the same. x is not True will be true for any value x that is not the singleton object True.
Rohit