Changing truth

Berthold Höllmann bhoel at web.de
Sun Jan 12 15:10:24 EST 2003


Gerhard Häring <gerhard.haering at gmx.de> writes:

> * Christian Tismer <tismer at tismer.de> [2003-01-11 23:56 +0100]:
> > Don't forget that I've proven that I can change truth, [...]
> 
> >>> True, False = False, True
> >>> True, False
> (0, 1)
> 
> Easy enough ;-)
> 
> SCNR,

Even better:

>python
Python 2.3a1 (#1, Jan  9 2003, 22:40:56) 
[GCC 3.2 (SuSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> True, False
(True, False)
>>> True, False = False, True
>>> True, False
(False, True)

True is false and false is true.

Berthold
-- 
bhoel at web.de / http://starship.python.net/crew/bhoel/
        It is unlawful to use this email address for unsolicited ads
        (USC Title 47 Sec.227). I will assess a US$500 charge for
        reviewing and deleting each unsolicited ad.




More information about the Python-list mailing list