-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconditional_examples.py
262 lines (149 loc) · 3.75 KB
/
conditional_examples.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
#!/usr/bin/env python
# coding: utf-8
# # Conditional Examples
# In[ ]:
# Boolean string method
# Each characters contain starting, capital one word.
favorite_book = input("Enter the title of a favorite book: ")
if favorite_book.istitle():
print(favorite_book, "- nice capitalization in that title!")
else:
print(favorite_book, "- consider capitalization throughout for book titles.")
# In[ ]:
# another example
a_number = input("enter a positive integer number: ")
if a_number.isdigit():
print(a_number, "is a positive integer.")
elif a_number.isalnum():
print(a_number, "is a combination of integer & word.")
# another if
if a_number.isalpha():
print(a_number, "is more like a word.")
else:
pass
# In[ ]:
vehicle_type = input('Enter a type of vehicle that starts with "P": ')
if vehicle_type.upper().startswith("P"):
print(vehicle_type, 'starts with "P"')
else:
print(vehicle_type, 'does not start with "P"')
# # Comparison Operators
# In[ ]:
# example of comparison operators with if-else conditions.
x = 21
if x > 25:
print("x is already bigger than 25")
else:
print("x was", x)
x = 25
print("now x is", x)
# In[ ]:
x = 18
if x + 18 == x + x:
print("Pass: x + 18 is equal to", x + x)
else:
print("Fail: x + 18 is not equal to", x + x)
# In[ ]:
x = 18
test_value = 18
if x != test_value:
print('x is not', test_value)
else:
print('x is', test_value)
# In[ ]:
# DON'T ASSIGN (x = 2) when you mean to COMPARE (x == 2)
x = 2
if x == 2:
print('"==" tests for, is equal to')
else:
pass
# In[ ]:
x = 10
y = int(input())
if y == x + x:
print(y , " is equal to ", x + x)
print("Condition is True")
elif y > x + x:
print(y, ' is greater than with ', x + x)
print("Condition is True")
else:
print(y ," is less than", x + x)
# # String Comparisons
# - Strings can be equal == or unequal !=
# - Strings can be greater than > or less than <
# - alphabetically "A" is less than "B"
# - lower case "a" is greater than upper case "A"
# - String comparison control the flow of our program.
# In[ ]:
"hello" < "Hello"
# In[ ]:
"Aardvark" > "Zebra"
# In[ ]:
'student' != 'Student'
# In[ ]:
print("'student' >= 'Student' is", 'student' >= 'Student')
# In[ ]:
print("'student' != 'Student' is", 'student' != 'Student')
# In[ ]:
"Hello " + "World!" == "Hello World!"
# In[ ]:
"Hello" == "Hello"
# In[ ]:
msg = "Hello"
if msg == "Hello":
print("Condition is True.")
else:
print("Condition is False.")
# In[ ]:
greeting = "Hello"
msg = str(input("Enter string to match : "))
if greeting == msg:
print("Condition is True.")
else:
print("Condition is False.")
# In[ ]:
"Hello" == 'Hello'
# In[ ]:
"hello" == 'Hello'
# In[ ]:
"Hello" == Hello
# In[ ]:
# If using string comparisons
msg = "Save the world"
if msg == "save the world":
# not match because of 's'
print("message as expected")
else:
print('message not as expected')
# In[ ]:
msg = "Save the world"
prediction = "save the world"
# string method to match string comparison
if msg.lower() == prediction.lower():
print("Go corona Go!!")
else:
print("Need more heal!!")
# In[ ]:
print("What is 8 + 13 ? ")
def user():
que = int(input("Write your answer here :"))
if que == 8 + 13:
print("correct answer is ",que)
else:
print("incorrect answer.")
return que
user()
# In[7]:
def tf_quiz(question, correct_ans):
que = print("(T/F)",question)
ans = input("Enter answer T or F : ")
if ans == "T":
return "correct"
elif ans == "F":
return "incorrect"
return que,ans
z = tf_quiz("Should i save it?","T")
print("your answer is",z)
y = tf_quiz("Corona is a virus","T")
print("your answer is",y)
# In[ ]: