ex.27 to ex.31
This commit is contained in:
parent
d270952bf0
commit
7645242f74
4 changed files with 138 additions and 0 deletions
41
sami/learn-python-the-hard-way/ex29.py
Normal file
41
sami/learn-python-the-hard-way/ex29.py
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
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.")
|
||||
Loading…
Add table
Add a link
Reference in a new issue