Chris Angelico: > Dave Angel: > >>>> bool = int > Any language that allows you to do this is either awesome or > terrifying. Come to think of it, there's not a lot of difference.
Even better: $ python2.7 -c 'False = True; print False' True Alas: $ python3 -c 'False = True; print(False)' File "<string>", line 1 SyntaxError: assignment to keyword -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list