Skip to content

Instantly share code, notes, and snippets.

@audy
Forked from TheNZA/gist:5665001
Last active December 17, 2015 20:08
Show Gist options
  • Save audy/5665008 to your computer and use it in GitHub Desktop.
Save audy/5665008 to your computer and use it in GitHub Desktop.
def the_flying_circus():
# what's going on here?
True and True is True
# use parenthesis to make this statement not ambiguous
if (True and True) is False:
print "Horray"
elif False:
print "fuck"
else:
return True
print the_flying_circus()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment