Created
October 7, 2011 09:59
-
-
Save wrboyce/1269942 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| >>> def f1(): print 'f1'; return True | |
| ... | |
| >>> def f2(): print 'f2'; return True | |
| ... | |
| >>> f1() & f2() | |
| f1 | |
| f2 | |
| True | |
| >>> f1() and f2() | |
| f1 | |
| f2 | |
| True |
caius
commented
Oct 7, 2011
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment