forked from bugcy013/pyway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex3.py
43 lines (33 loc) · 822 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
38
39
40
41
42
43
# This is a code for Python Way ex3
# Numbers and Maths
# +
# -
# /
# * asterisk
# % percent
# >
# <
# >=
# <=
print "I will now count my chickens:"
# 30 = result from 25+30/6
print "Hens", 25.0 + 30.0 / 6.0
# 97 = result from 100-25*3%4
print "Roosters", 100.0 - 25.0 * 3.0 % 4.0
print "I will now count the eggs:"
# 6.75 = result from 3+2+1-5+4%2-1/4+6
print 3.0 + 1.0 + 2.0 - 5.0 + 4.0 % 2.0 - 1.0 / 4.0 + 6.0
# 4.0%2.0 = 0
# 1.0/4.0 = 0.25
# tests to test the true or false things
print "Is it true that 3 + 2 < 5 - 7?"
# false
print 3.0 + 2.0 < 5.0 - 7.0
print "What is 3 + 2 ?", 3 + 2
print "What is 5 - 7 ?", 5 - 7
print "Oh, that's the way it's false."
print "How about some more."
# T T F
print "Is it greater?", 5 > -2
print "Is it greater or equal?", 5 >= -2
print "Is it less or equal?", 5 <= -2