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
|
{
"metadata": {
"name": "",
"signature": "sha256:d3ec56f0fb1e7a95eb53ee17745721c0f8fa66da6256b85d8eb402b33b736e2d"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Hour 20 : Understanding Unions"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 20.1, Page No 335"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class menu:\n",
" def __init__(self,name,price):\n",
" self.name = name\n",
" self.price = price\n",
"if __name__ == '__main__':\n",
" print \"The content assigned to the union separately:\\n\"\n",
" dish = menu(\"Sweet and Sour Chicken\",9.95)\n",
" print \"Dish Name: \",dish.name\n",
" print \"Dish Price: \",dish.price"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The content assigned to the union separately:\n",
"\n",
"Dish Name: Sweet and Sour Chicken\n",
"Dish Price: 9.95\n"
]
}
],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 20.2, Page No 338"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class employee:\n",
" def __init__(self,start_year,dpt_code,id_number):\n",
" self.start_year = start_year\n",
" self.dpt_code = dpt_code\n",
" self.id_number = id_number\n",
"if __name__ == '__main__':\n",
" info = employee(1997,8,1234)\n",
" print \"Start Year: \",info.start_year,\"\\n\"\n",
" print \"Dpt. Code: \",info.dpt_code,\"\\n\"\n",
" print \"ID Number: \",info.id_number,\"\\n\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Start Year: 1997 \n",
"\n",
"Dpt. Code: 8 \n",
"\n",
"ID Number: 1234 \n",
"\n"
]
}
],
"prompt_number": 4
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 20.3, page no. 340"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import sys\n",
"class u:\n",
" def __init__(self,x,y):\n",
" self.x = x\n",
" self.y = y\n",
"class s:\n",
" def __init__(self,x,y):\n",
" self.x = x\n",
" self.y = y\n",
"if __name__ == '__main__':\n",
" a_union = u(10,20)\n",
" a_struct = s(10,20)\n",
" #print \"The size of double: \",sys.getsizeof(double),\"byte\\n\" Double is not in python\n",
" print \"The size of int: \",sys.getsizeof(int),\"byte\\n\"\n",
" print \"The size of union: \",sys.getsizeof(a_union),\"byte\\n\"\n",
" print \"The size of struct: \",sys.getsizeof(a_struct),\"byte\\n\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The size of int: 872 byte\n",
"\n",
"The size of union: 72 byte\n",
"\n",
"The size of struct: 72 byte\n",
"\n"
]
}
],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 20.4, Page No 341"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class u:\n",
" ch = [0, 0]\n",
" num = 0\n",
"\n",
"def UnionInitialize(val):\n",
" val.ch[0] = 'H'\n",
" val.ch[1] = 'I'\n",
" return val.ch\n",
"if __name__ == '__main__':\n",
" val = u()\n",
" x = UnionInitialize(val)\n",
" print \"The two characters held by the union:\\n\"\n",
" print x[0],\"\\n\"\n",
" print x[1],\"\\n\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The two characters held by the union:\n",
"\n",
"H \n",
"\n",
"I \n",
"\n"
]
}
],
"prompt_number": 11
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 20.5, Page No 344"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class survey:\n",
" def __init__(self,name,c_d_p,age,hour_per_week):\n",
" self.name = name\n",
" self.c_d_p = c_d_p\n",
" self.age = age\n",
" self.hour_per_week = hour_per_week\n",
" class provider:\n",
" def __init__(self,cable_company,dish_company):\n",
" self.cable_company = cable_company\n",
" self.dish_company = dish_company\n",
"def DataEnter(ptr):\n",
" is_yes = raw_input(\"Are you using cable at home? (Yes or No): \")\n",
" if is_yes == 'Y' or is_yes == 'y':\n",
" ptr.provider.cable_company = raw_input(\"Enter the cable company name: \")\n",
" ptr.c_d_p = 'c'\n",
" else:\n",
" is_yes = raw_input(\"Are you using a satellite dish? (Yes or No): \")\n",
" if is_yes == 'Y' or is_yes == 'y':\n",
" ptr.provider.dish_company = raw_input(\"Enter the satellite dish company name: \")\n",
" ptr.c_d_p = 'd'\n",
" else:\n",
" ptr.c_d_p = 'p'\n",
" ptr.name = raw_input(\"Please enter your name: \")\n",
" ptr.age = int(raw_input(\"Your age : \"))\n",
" ptr.hour_per_week = int(raw_input(\"How many hours you spend on watching TV per week: \"))\n",
"def DataDisplay(ptr):\n",
" print \"\\nHere\u2019s what you\u2019ve entered:\\n\"\n",
" print \"Name: \",ptr.name,\"\\n\"\n",
" print \"Age: \",ptr.age,\"\\n\"\n",
" print \"Hour per week: \",ptr.hour_per_week,\"\\n\"\n",
" if ptr.c_d_p == 'c':\n",
" print \"Your cable company is: \",ptr.provider.cable_company,\"\\n\"\n",
" elif ptr.c_d_p == 'd':\n",
" print \"Your satellite dish company is: \",ptr.provider.dish_company,\"\\n\"\n",
" else:\n",
" print \"You don\u2019t have cable or a satellite dish.\\n\"\n",
" print \"\\nThanks and Bye!\\n\"\n",
"if __name__ == '__main__':\n",
" tv = survey(\"\",\"\",\"\",\"\")\n",
" DataEnter(tv)\n",
" DataDisplay(tv)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Are you using cable at home? (Yes or No): N\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Are you using a satellite dish? (Yes or No): Y\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter the satellite dish company name: ABCD Company\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Please enter your name: Tony Zhang\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Your age : 30\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"How many hours you spend on watching TV per week: 8\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" \n",
"Here\u2019s what you\u2019ve entered:\n",
"\n",
"Name: Tony Zhang \n",
"\n",
"Age: 30 \n",
"\n",
"Hour per week: 8 \n",
"\n",
"Your satellite dish company is: ABCD Company \n",
"\n",
"\n",
"Thanks and Bye!\n",
"\n"
]
}
],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 20.6, Page No 348"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class bit_field:\n",
" def __init__(self,cable,dish):\n",
" self.cable = cable\n",
" self.dish = dish\n",
" cable = 1\n",
" dish = 1\n",
"class survey:\n",
" def __init__(self,name,age,hour_per_week):\n",
" self.name = name\n",
" self.age = age\n",
" self.hour_per_week = hour_per_week\n",
" c_d = bit_field(\"\",\"\")\n",
" class provider:\n",
" def __init__(self,cable_company,dish_company):\n",
" self.cable_company = cable_company\n",
" self.dish_company = dish_company\n",
"def DataEnter(ptr):\n",
" is_yes = raw_input(\"Are you using cable at home? (Yes or No): \")\n",
" if is_yes == 'Y' or is_yes == 'y':\n",
" ptr.provider.cable_company = raw_input(\"Enter the cable company name: \")\n",
" ptr.c_d.cable = 1\n",
" ptr.c_d.dish = 0\n",
" else:\n",
" is_yes = raw_input(\"Are you using a satellite dish? (Yes or No): \")\n",
" if is_yes == 'Y' or is_yes == 'y':\n",
" ptr.provider.dish_company = raw_input(\"Enter the satellite dish company name: \")\n",
" ptr.c_d.cable = 0\n",
" ptr.c_d.dish = 1\n",
" else:\n",
" ptr.c_d.cable = 0\n",
" ptr.c_d.dish = 0\n",
" ptr.name = raw_input(\"Please enter your name: \")\n",
" ptr.age = int(raw_input(\"Your age : \"))\n",
" ptr.hour_per_week = int(raw_input(\"How many hours you spend on watching TV per week: \"))\n",
"def DataDisplay(ptr):\n",
" print \"\\nHere\u2019s what you\u2019ve entered:\\n\"\n",
" print \"Name: \",ptr.name,\"\\n\"\n",
" print \"Age: \",ptr.age,\"\\n\"\n",
" print \"Hour per week: \",ptr.hour_per_week,\"\\n\"\n",
" if ptr.c_d.cable and not ptr.c_d.dish:\n",
" print \"Your cable company is: \",ptr.provider.cable_company,\"\\n\"\n",
" elif not ptr.c_d.cable and ptr.c_d.dish:\n",
" print \"Your satellite dish company is: \",ptr.provider.dish_company,\"\\n\"\n",
" else:\n",
" print \"You don\u2019t have cable or a satellite dish.\\n\"\n",
" print \"\\nThanks and Bye!\\n\"\n",
"if __name__ == '__main__':\n",
" tv = survey(\"\",\"\",\"\")\n",
" DataEnter(tv)\n",
" DataDisplay(tv)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Are you using cable at home? (Yes or No): N\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Are you using a satellite dish? (Yes or No): Y\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter the satellite dish company name: ABCD Company\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Please enter your name: Tony Zhang\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Your age : 30\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"How many hours you spend on watching TV per week: 8\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Here\u2019s what you\u2019ve entered:\n",
"\n",
"Name: Tony Zhang \n",
"\n",
"Age: 30 \n",
"\n",
"Hour per week: 8 \n",
"\n",
"Your satellite dish company is: ABCD Company \n",
"\n",
"\n",
"Thanks and Bye!\n",
"\n"
]
}
],
"prompt_number": 6
}
],
"metadata": {}
}
]
}
|