-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChapter 7-User Inputs and while loops
465 lines (465 loc) · 8.96 KB
/
Chapter 7-User Inputs and while loops
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"#User Inputs and while loop"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Hi, I am smitha\n"
]
}
],
"source": [
"message=input(\"Tell me something, and I will repeat it back to you: \")\n",
"print(message)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Hello smitha!\n"
]
}
],
"source": [
"name=input(\"Please enter your name: \")\n",
"print(\"Hello \"+name+\"!\")"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
" Hello, Smitha.\n"
]
}
],
"source": [
"prompt=\"If you tell us who you are, we can help you better.\"\n",
"prompt+=\"\\nWhat is your name? \"\n",
"\n",
"name=input(prompt)\n",
"print(\"\\n Hello, \"+name+\".\")"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"24\n"
]
}
],
"source": [
"age=input(\"How old are you?\")\n",
"print(age)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"True"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"age=input(\"how old are you?\")\n",
"age=int(age)\n",
"age>=18\n"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
" You're tall enought to ride!\n"
]
}
],
"source": [
"height=input(\"How tall are you in inches? \")\n",
"height=int(height)\n",
"\n",
"if height>=36:\n",
" print(\"\\n You're tall enought to ride!\")\n",
"else:\n",
" print(\"\\nYou can ride when you're older.\")"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"1"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"4%3"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"2"
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"5%3"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"6%3"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The number 5 is odd.\n"
]
}
],
"source": [
"number=input(\"Enter a number and I will tell you if it is even or odd: \")\n",
"number=int(number)\n",
"\n",
"if number % 2 == 0:\n",
" print(\"The number \"+str(number)+\" is even.\")\n",
"else:\n",
" print(\"The number \"+str(number)+\" is odd.\")"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Let me see if I can find you a subaru.\n"
]
}
],
"source": [
"#Exercise 7-1 Rental Car\n",
"\n",
"rental=input(\"What kind of car would you like to rent today? \")\n",
"print(\"Let me see if I can find you a \"+rental+\".\")"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Your table is ready.\n"
]
}
],
"source": [
"#Exercise 7-2 Restaurant Seating\n",
"\n",
"group=input(\"How many people are attending dinner tonight? \")\n",
"group=int(group)\n",
"\n",
"if group > 8:\n",
" print(\"You will have to wait a while for your table.\")\n",
"else: \n",
" print(\"Your table is ready.\")"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"You will have to wait a while for your table.\n"
]
}
],
"source": [
"group=input(\"How many people are attending dinner tonight? \")\n",
"group=int(group)\n",
"\n",
"if group > 8:\n",
" print(\"You will have to wait a while for your table.\")\n",
"else: \n",
" print(\"Your table is ready.\")"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The number 100 is a multiple of 10.\n"
]
}
],
"source": [
"#Exercise 7-3 Multiples of Ten\n",
"\n",
"number=input(\"Enter a number and I will tell you whether it is a multiple of 10 or not: \")\n",
"number=int(number)\n",
"\n",
"if number % 10 == 0: \n",
" print(\"The number \"+str(number)+\" is a multiple of 10.\")\n",
"else:\n",
" print(\"The number \"+str(number)+\" is not a multiple of 10.\")"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The number 102 is not a multiple of 10.\n"
]
}
],
"source": [
"number=input(\"Enter a number and I will tell you whether it is a multiple of 10 or not: \")\n",
"number=int(number)\n",
"\n",
"if number % 10 == 0: \n",
" print(\"The number \"+str(number)+\" is a multiple of 10.\")\n",
"else:\n",
" print(\"The number \"+str(number)+\" is not a multiple of 10.\")"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {},
"outputs": [],
"source": [
"#While loops"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1\n",
"2\n",
"3\n",
"4\n",
"5\n"
]
}
],
"source": [
"number=1\n",
"while number<=5:\n",
" print(number)\n",
" number+=1"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"smitha\n",
"boom\n"
]
}
],
"source": [
"prompt=\"\\nTell me something, and I will repeat it back to you: \"\n",
"prompt+=\"\\nEnter 'quit' to end the program.\"\n",
"\n",
"message=\"\"\n",
"while message!='quit':\n",
" message = input(prompt) \n",
" if message!='quit':\n",
" print(message)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"prompt=\"\\nTell me something, and I will repeat it back to you: \"\n",
"prompt+=\"\\nEnter 'quit' to end the program.\"\n",
"\n",
"active=True\n",
"\n",
"while active:\n",
" message = input(prompt) \n",
" \n",
" if message=='quit':\n",
" active=False\n",
" else:\n",
" print(message)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"prompt=\"\\nPlease enter the name of the city you have visited: \"\n",
"prompt+=\"\\n (Enter quit when you are finished.)\"\n",
"\n",
"while True:\n",
" city=input(prompt)\n",
" \n",
" if city =='quit':\n",
" break\n",
" else:\n",
" print(\"I'd love to visit: \"+city.title()+\".\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.2"
}
},
"nbformat": 4,
"nbformat_minor": 2
}