petit_herisson

导航

Exercise 3 - do math

 

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)

 output

I will now count my chickens:
Hens 30.0
Roosters 97
Now I will count the eggs:
6.75
Is is true that 3 + 2 < 5 - 7?
False
What is 3 +2? 5
What is 5 - 7? -2
Oh, that's why it's False.
How about some more.
Is is greater? True
Is is greater or equal? True
Is it less or equal? False

 

print("Now I will count my pens:")
print("Markers", 1 + 2)
print("Pencils", 2 * 2 + 1)
print("Now I will count my notebooks:")
print(8 % 3 + 6 - 10 / 5)

 2019-09-26

20:05:35

posted on 2019-09-26 14:28  petit_herisson  阅读(138)  评论(0)    收藏  举报