Skip to content

Instantly share code, notes, and snippets.

@blammothyst
Last active August 29, 2015 13:56
Show Gist options
  • Save blammothyst/9258695 to your computer and use it in GitHub Desktop.
Save blammothyst/9258695 to your computer and use it in GitHub Desktop.
Code from Learn Python The Hard Way (.org) ex 29
people = 10
cats = 0
dogs = 5
if people < cats:
print "Too many cats! The world is doomed!"
if people > cats:
print "Not many cats! The world is saved!"
if people < dogs:
print "The world is drooled on!"
if people > dogs:
print "The world is dry!"
dogs += 5
if people >= dogs:
print "People are greater than or equal to dogs."
if people <= dogs:
print "People are less than or equal to dogs."
if people == dogs:
print "People are dogs."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment