-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12Conditions.py
189 lines (109 loc) · 1.93 KB
/
12Conditions.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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# -*- coding: utf-8 -*-
#if-else condition
#logical operations
if (condition)
{
}
if [conditional true then]:
statement
= "assignment operator"
a=10
b=20
a=b
a
b
#conditional operators
== "check is equal to"
a=20
b=20
a==b
a<b
a>b
a<=b
a>=b
a!=b
x=2
if (x==2):
print("right")
#short methods
if x == 2: print("x = 1")
#
if True then:
state1
else
state2
x=20
y=100
if (x>y):
print("x is greater") # state 1
else:
print("y is greater") #state 2
Marks=90
if(Marks>80):
print("A")
elif (Marks>70 and Marks<=80):
print("B")
elif(Marks>60 and Marks<=70):
print("C")
else:
print("F")
#longer way
if x > y:
print("X")
elif x == y:
print("=")
else :
print("Y")
#other logical operations
#==, !=, <, > , <=, >=
#with else
if x == 1:
print(" x=1")
else:
print("x not equal to 1")
x=2
if x == 1:
print(" x=1")
else:
print("x not equal to 1")
#no bracket, use of indentation with colon operator
#elif
if x == 1:
print(" x=1")
elif x == 2:
print(" x=2")
else :
print("x not equal to 1 or 2")
x=3
if x == 1:
print(" x=1")
elif x == 2:
print(" x=2")
else :
print("x not equal to 1 or 2")
#shorthand if
#or and and
x=3; y=4; z=5
if x < y and y < z:
print("Both conditions are True")
z=2
if x < y or y > z:
print("Both conditions are True")
if (x < y) or (y > z) :
print("Either conditions are True")
if ((x < y) or (y > z)) and (x > 10):
print("Both conditions are True")
else:
print("Conditions are not True")
if ((x < y) or (y > z)) or (x > 10):
print("Either conditions are True")
else:
print("Conditions are not True")
(x < y) or (y > z) and (x > 10)
x<y, x>z, x<10
True or False and True #left to right
(x > 10) and (x < y) and (y > z)
if (x < y) or (y > z) and (x > 10):
print("Either conditions are True")
else:
print("Conditions are not True")