Created
September 27, 2011 08:57
-
-
Save adaptives/1244639 to your computer and use it in GitHub Desktop.
LPTHW Exercise 29
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
| # LPTHW Exercise 29 | |
| people = 20 | |
| cats = 30 | |
| dogs = 15 | |
| 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