Skip to content

Instantly share code, notes, and snippets.

@michaeljohnbarr
Created February 18, 2016 04:17
Show Gist options
  • Save michaeljohnbarr/ef1470db69663b4eddc3 to your computer and use it in GitHub Desktop.
Save michaeljohnbarr/ef1470db69663b4eddc3 to your computer and use it in GitHub Desktop.
Double Negatives, Anyone?!
if not True:
print 'wow'
else:
print 'neat'
# neat
if not not True:
print 'wow'
else:
print 'neat'
# wow
if not not not True:
print 'wow'
else:
print 'neat'
# neat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment