Skip to content

Instantly share code, notes, and snippets.

@dagbrown
Created November 11, 2013 07:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dagbrown/7409062 to your computer and use it in GitHub Desktop.
Save dagbrown/7409062 to your computer and use it in GitHub Desktop.
lol python
Python 2.7.5 (default, Nov 6 2013, 17:10:18)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> a = 5
>>> a > 3
True
>>> a < 3
False
>>> True = 42
>>> True * 2
84
>>> ( a > 3 ) * 2
2
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment