-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex3.py
37 lines (28 loc) · 980 Bytes
/
ex3.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# This prints chicken text
print "I will now count my chickens:"
# This prints hens, and calcuates a total
print "Hens", 25.0 + 30.0 / 6.0
# This prints roosters and calculates a total
print "Roosters", 100.0 - 25.0 * 3.0 % 4.0
# Prints egg count text
print "Now I will count the eggs:"
# Performs a math calcuation
print 3.0 + 2.0 + 1.0 - 5.0 + 4.0 % 2.0 - 1.0 / 4.0 + 6.0
# Prints upcoming test
print "Is it true that 3 + 2 < 5 - 7?"
# performs test from above - it looks to perform a boolean based on the sign
print 3.0 + 2.0 < 5.0 - 7.0
# prints, and calcuates
print "What is 3 + 2?", 3.0 + 2.0
# Prints and calcuates
print "What is 5 - 7?", 5.0 - 7.0
# prints text
print "Oh, that's why it's False."
# prints text
print "How about some more."
# prints and calcuates (boolean)
print "Is it greater?", 5.0 > -2.0
# prints and calculates (boolean)
print "Is it greater or equal?", 5.0 >= -2.0
# prints and caclulates (boolean)
print "Is it less or equal?", 5.0 <= -2.0