python the hard way ex.
This commit is contained in:
parent
7b39b906fb
commit
dab9fe5912
9 changed files with 133 additions and 0 deletions
30
sami/learn-python-the-hard-way/ex3.py
Normal file
30
sami/learn-python-the-hard-way/ex3.py
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
print("I will now count my chickens:")
|
||||
|
||||
|
||||
print("Hens", 25 + 30 / 6)
|
||||
print("Roosters", 100 - 25 * 3 % 4)
|
||||
|
||||
|
||||
print("Now I will count the eggs:")
|
||||
|
||||
|
||||
print(3 + 2 + 1 - 5 + 4 % 2 - 1 / 4 + 6)
|
||||
|
||||
|
||||
|
||||
print("Is it true that 3 + 2 < 5 - 7?")
|
||||
|
||||
print(3 + 2 < 5 - 7)
|
||||
|
||||
|
||||
|
||||
print("What is 3 + 2?", 3 + 2)
|
||||
print("What is 5 - 7?", 5 - 7)
|
||||
|
||||
print("Oh, that's why it's False.")
|
||||
|
||||
print("How about some more.")
|
||||
|
||||
print("Is it greater?", 5 > -2)
|
||||
print("Is it greater or equal?", 5 >= -2)
|
||||
print("Is it less or equal?", 5 <= -2)
|
||||
Loading…
Add table
Add a link
Reference in a new issue