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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
|
{
"metadata": {
"name": "",
"signature": "sha256:cceaf517d4ab644356e85522addd8c655c7a27bbc143387c58a9d5656be364df"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.1, page no: 208"
]
},
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 8: Data Abstraction through Classes and User-Defined Data Types "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class Super:\n",
" def __init__(self):\n",
" self.__IntegerData=None #private member\n",
" #public functions\n",
" def SetData(self,i):\n",
" self.__IntegerData=i #refer to IntegerData\n",
" def ShowData(self):\n",
" print \"Data is \",self.__IntegerData,' '\n",
"\n",
"ob1=Super()\n",
"ob2=Super()\n",
"ob1.SetData(1000)\n",
"ob2.SetData(2000)\n",
"ob1.ShowData()\n",
"ob2.ShowData()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Data is 1000 \n",
"Data is 2000 \n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.2, page no:211"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class X:\n",
" def __init__(self):\n",
" self.a=None #private members\n",
" self.b=None #private members\n",
" \n",
"#no structure type present in python \n",
"x = X()\n",
"\n",
"x.a=0\n",
"x.b=1\n",
"print \"x.a=\",x.a,\",x.b=\",x.b"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"x.a= 0 ,x.b= 1\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.3, page no:214"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class Fraction:\n",
" \n",
" def SetValue(self,a,b): #public functions\n",
" self.__num=a \n",
" self.__denom=b \n",
" def GetValue(self,a,b):\n",
" a=self.__num\n",
" b=self.__denom\n",
" \n",
"f=Fraction()\n",
"n=input(\"Enter n: \") #user input\n",
"d=input(\"Enter d: \") #user input\n",
"print \"enter the numerator and denominator: \", ' ',n,d\n",
"\n",
"f.SetValue(n,d) #call function SetValue\n",
"print \"Numerator value set: \", ' ',n\n",
"print \"Denominator value set: \", ' ',d\n",
"f.GetValue(n,d) #call function GetData\n",
"print \"Numerator value retrieved: \", ' ',n\n",
"print \"Denominator value retrieved: \", ' ',d"
],
"language": "python",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter n: 3\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter d: 4\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"enter the numerator and denominator: 3 4\n",
"Numerator value set: 3\n",
"Denominator value set: 4\n",
"Numerator value retrieved: 3\n",
"Denominator value retrieved: 4\n"
]
}
],
"prompt_number": 3
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.4, page no:216"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class SimpleClass:\n",
" def __init__(self):\n",
" self.__i=None #private member\n",
" \n",
" def __init__(self):\n",
" self.__i=500 #constructor\n",
" \n",
" def SetData(self,d):\n",
" self.__i=d\n",
" \n",
" def GetData(self):\n",
" return self.__i\n",
" \n",
"#Initializing\n",
"s1=SimpleClass()\n",
"s2=SimpleClass()\n",
"print \"s1 has data: \",s1.GetData()\n",
"print \"s2 has data: \",s2.GetData()\n",
"s1.SetData(1000) #function call\n",
"s2.SetData(2000)\n",
"print \"s1 has data: \",s1.GetData(),' '\n",
"print \"s2 has data: \", s2.GetData(),' '\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"s1 has data: 500\n",
"s2 has data: 500\n",
"s1 has data: 1000 \n",
"s2 has data: 2000 \n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.5, page no:217"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class SimpleClass:\n",
" __IntegerData=None\n",
" def __init__(self,data=None):\n",
" if data==None:\n",
" self.__IntegerData=500 #default constructor\n",
" else:\n",
" self.__IntegerData=data #parameterised constructor\n",
" \n",
" def SetData(self,d):\n",
" self.__IntegerData=d\n",
" \n",
" def GetData(self):\n",
" return self.__IntegerData\n",
" \n",
"#Initializing\n",
"s1=SimpleClass()\n",
"s2=SimpleClass()\n",
"s3=SimpleClass(400)\n",
"s4=SimpleClass(600)\n",
"print \"s1 has data: \",s1.GetData(),' '\n",
"print \"s2 has data: \",s2.GetData(),' '\n",
"print \"s3 has data: \",s3.GetData(),' '\n",
"print \"s4 has data: \",s4.GetData(),' '\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"s1 has data: 500 \n",
"s2 has data: 500 \n",
"s3 has data: 400 \n",
"s4 has data: 600 \n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.6, page no:218"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class Fraction: \n",
" def_init_num=None #private members\n",
" def_init_denom=None #private members\n",
" def __init__(self,a=0,b=1):\n",
" self.__num=a\n",
" self.__denom=b\n",
" print \"Numerator set inside constructor\",' ',n\n",
" print \"Denominator set inside constructor\",' ',d\n",
" \n",
" def SetValue(self,a,b):\n",
" self.__num=a\n",
" self.__denom=b\n",
" def GetValue(self,a,b):\n",
" a= self.__num\n",
" b= self.__denom\n",
" return a,b\n",
" \n",
" def __del__(self): #destructor\n",
" pass\n",
" \n",
"n=input(\"Enter n: \") #user input\n",
"d=input(\"Enter d: \") #user input\n",
"print \"Please enter value of numerator and denominator: \",' ',n,d\n",
"f=Fraction(n,d)\n",
"f.GetValue(n,d)\n",
"print \"Numerator value retrieved: \", ' ',n\n",
"print \"Denominator value retrieved: \", ' ',d"
],
"language": "python",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter n: 3\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter d: 4\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Please enter value of numerator and denominator: 3 4\n",
"Numerator set inside constructor 3\n",
"Denominator set inside constructor 4\n",
"Numerator value retrieved: 3\n",
"Denominator value retrieved: 4\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.7, page no:221"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class Fraction:\n",
" \n",
" def __init__(self,a=0,b=1): #constructor\n",
" self.__num=a\n",
" self.__denom=b\n",
" print \"Numerator set inside constructor: \",self.__num\n",
" print \"Denominator set inside constructor: \",self.__denom \n",
" \n",
" def GetValue(self,a,b):\n",
" return self.__num,self.__denom\n",
"n=input(\"Enter n: \") #user input\n",
"d=input(\"Enter d: \") #user input\n",
"print \"Please enter the value of the numerator and denominator: \",n,d\n",
"f=Fraction(n,d)\n",
"n,d=f.GetValue(n,d)\n",
"print \"Numerator value retrieved: \", ' ',n\n",
"print \"Denominator value retrieved: \", ' ',d\n",
"n=input(\"Please enter the value of numerator only: \")\n",
"f1=Fraction(n)\n",
"n,d=f1.GetValue(n,d)\n",
"print \"Numerator value retrieved: \", ' ',n\n",
"print \"Denominator value retrieved: \", ' ',d\n",
"print 'ok..now I will create a fraction-no input please'\n",
"f2=Fraction()\n",
"n,d=f2.GetValue(n,d)\n",
"print \"Numerator value retrieved: \", ' ',n\n",
"print \"Denominator value retrieved: \", ' ',d"
],
"language": "python",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter n: 3\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter d: 4\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Please enter the value of the numerator and denominator: 3 4\n",
"Numerator set inside constructor: 3\n",
"Denominator set inside constructor: 4\n",
"Numerator value retrieved: 3\n",
"Denominator value retrieved: 4\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Please enter the value of numerator only: 3\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Numerator set inside constructor: 3\n",
"Denominator set inside constructor: 1\n",
"Numerator value retrieved: 3\n",
"Denominator value retrieved: 1\n",
"ok..now I will create a fraction-no input please\n",
"Numerator set inside constructor: 0\n",
"Denominator set inside constructor: 1\n",
"Numerator value retrieved: 0\n",
"Denominator value retrieved: 1\n"
]
}
],
"prompt_number": 3
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.8, page no:223"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class Fraction:\n",
" def_init_num=None #private members\n",
" def_init_denom=None #private members\n",
" \n",
" def __init__(self,anotherFraction=None): \n",
" if anotherFraction==None: #normal constructor\n",
" self.__num=anotherFraction\n",
" self.__denom=anotherFraction\n",
" else: #copy constructor\n",
" self.__num=anotherFraction.self.__num\n",
" self.__denom=anotherFraction.self.__denom\n",
" \n",
" \n",
" #public functions\n",
" def SetValue(self,a,b):\n",
" self.__num=a\n",
" self.__denom=b#refer to IntegerData\n",
" def GetValue(self,a,b):\n",
" a=self.__num\n",
" b=self.__denom\n",
" return a,b\n",
" \n",
"f=Fraction()\n",
"n=input(\"Enter n: \") #user input\n",
"d=input(\"Enter d: \") #user input\n",
"print \"enter the numerator and denominator: \", ' ',n,d\n",
"\n",
"f.SetValue(n,d) #call function SetValue\n",
"print \"Numerator value set: \", ' ',n\n",
"print \"Denominator value set: \", ' ',d\n",
"f.GetValue(n,d) #call function GetData\n",
"print \"Numerator value retrieved: \", ' ',n\n",
"print \"Denominator value retrieved: \", ' ',d\n",
"print \"Now a second clone copy is being created: \",''\n",
"f1=f\n",
"f1.GetValue(n,d)\n",
"print \"Clone's numerator value retrieved: \", ' ',n\n",
"print \"Clone's denominator value retrieved: \", ' ',d"
],
"language": "python",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter n: 5\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter d: 6\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"enter the numerator and denominator: 5 6\n",
"Numerator value set: 5\n",
"Denominator value set: 6\n",
"Numerator value retrieved: 5\n",
"Denominator value retrieved: 6\n",
"Now a second clone copy is being created: \n",
"Clone's numerator value retrieved: 5\n",
"Clone's denominator value retrieved: 6\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.9, page no:229"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def MyNewHandler():\n",
" print \"Sorry operator new failed to allocate memory\"\n",
" exit(0)\n",
" \n",
"def _set_new_handler(s):\n",
" s()\n",
"#In python there is no in-built _set_new_handler function, so i made this function and passed MyNewHandler function as a parameters\n",
"_set_new_handler(MyNewHandler)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Sorry operator new failed to allocate memory\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.10, page no:230"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from ctypes import * \n",
"class Fraction: \n",
" def __init__(self,a=0,b=1): \n",
" if isinstance(a,int): \n",
" c = c_int(a) \n",
" d = c_int(b) \n",
" self.__num = pointer(c) \n",
" self.__denom = pointer(d) \n",
" print 'constructor sets numerator = ', self.__num[0] , ', denominator = ', self.__denom[0] \n",
" else:\n",
" c=c_int(a.__num[0])\n",
" d = c_int(a.__denom[0])\n",
" self.__num = pointer(c) \n",
" self.__denom = pointer(d)\n",
" print 'copy constructor sets numerator = ', self.__num[0] , ', denominator = ', self.__denom[0] \n",
" \n",
" def __del__(self): \n",
" print 'destructor deallocates numerator = ', self.__num[0] , ', denominator = ', self.__denom[0] \n",
" \n",
"n = input(\"Please enter values of numerator: \") \n",
"d = input(\"Please enter values of denominator: \") \n",
"f = Fraction(n,d) \n",
"print 'Please enter another set of ' \n",
"n = input(\"numerator: \") \n",
"d = input(\"denominator: \") \n",
"print 'Creating fraction *pf : ' \n",
"pf = Fraction(n,d) \n",
"print 'Now a clone copy (f2) created from *pf: ' \n",
"f2 = Fraction(pf)\n",
"print 'Now another clone copy (*pf2) created from f:' \n",
"pf2 = Fraction(f) \n",
"print '*pf2 is being destroyed:' \n",
"del pf2\n",
"print '*pf is being destroyed:' \n",
"del pf \n",
"print 'now objects f2 and f automatically destroyed : '"
],
"language": "python",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Please enter values of numerator: 3\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Please enter values of denominator: 4\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"constructor sets numerator = 3 , denominator = 4\n",
"Please enter another set of \n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"numerator: 5\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"denominator: 6\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Creating fraction *pf : \n",
"constructor sets numerator = 5 , denominator = 6\n",
"Now a clone copy (f2) created from *pf: \n",
"copy constructor sets numerator = 5 , denominator = 6\n",
"Now another clone copy (*pf2) created from f:\n",
"copy constructor sets numerator = 3 , denominator = 4\n",
"*pf2 is being destroyed:\n",
"*pf is being destroyed:\n",
"now objects f2 and f automatically destroyed : \n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.11, page no:234"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def Memfail(self,s):\n",
" print \"Sorry Unable to allocate memory\"\n",
" sys.exit(0)\n",
"\n",
"MAX_SIZE = 60 + 1\n",
"\n",
"MAX_SIZE=[[0 for col in range(MAX_SIZE)]for row in range(MAX_SIZE)]\n",
"nChar=0\n",
"chArr=\"Hello\"\n",
"\n",
"print \"Please input a string( 60 characters max.): \",chArr\n",
"\n",
"nChar=len(chArr)+1\n",
"szStr=chArr\n",
"print \"required memory space for\",nChar,\n",
"print \"characters\"\n",
"chArr=szStr #string copy\n",
"szStr=chArr\n",
"print \"String copied in allocated space: \",szStr\n",
"print \"Memory space dellocated\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Please input a string( 60 characters max.): Hello\n",
"required memory space for 6 characters\n",
"String copied in allocated space: Hello\n",
"Memory space dellocated\n"
]
}
],
"prompt_number": 4
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.12, page no:236"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class Fraction:\n",
" \n",
" def __init__(self,a=0,b=1): #constructor\n",
" self.__num=a\n",
" self.__denom=b\n",
" \n",
" def __del__(self): #destructor\n",
" pass\n",
" \n",
" def GetValue(self,a,b):\n",
" a=self.__num\n",
" b=self.__denom\n",
" return self.__num,self.__denom\n",
"n=4\n",
"d=5\n",
"f=Fraction(4,5)\n",
"n,d=f.GetValue(n,d)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Program Source Code 8.13, page no:239"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"class X:\n",
" __sa=20 #initialising static member\n",
" a = None\n",
" def __init__(self):\n",
" self.a=None #public member\n",
" def f(self,b):\n",
" a=30\n",
" print \"Global a= \",b\n",
" print \"Local a= \",a\n",
" print \"Nonstatic member a= \",self.a\n",
" print \"static member sa= \",self.__sa\n",
"\n",
"a=10\n",
"\n",
"aXobj=X()\n",
"aXobj.a=40\n",
"aXobj.f(a)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Global a= 10\n",
"Local a= 30\n",
"Nonstatic member a= 40\n",
"static member sa= 20\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
|