-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSevententh Day.py
More file actions
72 lines (51 loc) · 947 Bytes
/
Sevententh Day.py
File metadata and controls
72 lines (51 loc) · 947 Bytes
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# ___________________ Seventh Day ________________ #
# Python if-else
a = 33
b = 200
if b > a:
print(" b is greater than a")
a = 33
b = 33
if b > a:
print(" b is greater than a")
elif a == b:
print("a and b are equal")
a = 200
b = 33
if b>a:
print(" b is greater than a")
elif a ==b :
print("a and b are equal")
else:
print("a is greater than b")
# short hand if
a = 200
b = 33
if a>b:
print("a is greater than b")
# short hand if - else
a = 2
b = 330
print("A") if a>b else print("B")
a = 330
b = 330
print("A") if a > b else print("=") if a == b else print("B")
# AND
a = 200
b = 33
c =500
if a>b and c>a:
print("Both condition are True")
# OR
a = 200
b = 33
c = 500
if a>b or a > c:
print("At least one of the condition is true")
x = 41
if x > 10:
print("Above 10,")
if x > 20:
print(" also Above 20")
else:
print("but not above 20. ")