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
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
|
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h1>Chapter 12: Preprocessor Directives<h1>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.1, Page number: 386<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Area of circle\n",
"\n",
"import sys\n",
"\n",
"#Defining the macro\n",
"#There is no macro definitions/preprocessors in python\n",
"PI = 3.14\n",
"\n",
"#Variable Initialization\n",
"r = float(raw_input(\"Enter radius of circle in cms.\"))\n",
"\n",
"#Calculation\n",
"area = PI * r * r\n",
"\n",
"#Result\n",
"sys.stdout.write(\"Area of a Circle = %.2f cm2\"%(area))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter radius of circle in cms.7\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Area of a Circle = 153.86 cm2"
]
}
],
"prompt_number": 1
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.2, Page number: 387<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Identifers for 'c' statements and variables\n",
"\n",
"import sys\n",
"import os\n",
"\n",
"#Macro definitions\n",
"#in python, function definitions are used instead of macros\n",
"def N():\n",
" return 10\n",
"\n",
"def cls():\n",
" os.system('cls')\n",
" \n",
"def wait():\n",
" t = raw_input(\"\")\n",
" \n",
"def display(s):\n",
" sys.stdout.write(s)\n",
"\n",
"for k in range(1,N()+1):\n",
" display(\"%d\\t\"%(k))\n",
" "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"1\t2\t3\t4\t5\t6\t7\t8\t9\t10\t"
]
}
],
"prompt_number": 7
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.3, Page number: 387<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Macros for logical operators\n",
"\n",
"import sys\n",
"\n",
"#Macro definitions\n",
"#in python, function definitions are used as macros\n",
"\n",
"#There is no preprocessors in python\n",
"\n",
"#Variable Initialization\n",
"a = int(raw_input(\"Enter Three Numbers : \"))\n",
"b = int(raw_input(\"Enter Three Numbers : \"))\n",
"c = int(raw_input(\"Enter Three Numbers : \"))\n",
"\n",
"if a > b and a > c:\n",
" sys.stdout.write(\"%d is the larger number\"%(a))\n",
"else:\n",
" if b > a and b > c:\n",
" sys.stdout.write(\"%d is the larger number\"%(b))\n",
" else:\n",
" if c > a and c > b:\n",
" sys.stdout.write(\"%d is the larger number\"%(c))\n",
" else:\n",
" if a == b and b == c:\n",
" sys.stdout.write(\"\\nNumbers are same.\")"
],
"language": "python",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter Three Numbers : 5\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter Three Numbers : 4\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter Three Numbers : 7\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"7 is the larger number"
]
}
],
"prompt_number": 2
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.4, Page number: 388<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Identifier for displaying double and triple of a number.\n",
"\n",
"#Macro definitions\n",
"#Function definitions are used as macros in python\n",
"\n",
"def DOUBLE(a):\n",
" return a*2\n",
"\n",
"def TRIPLE(a):\n",
" return a*3\n",
"\n",
"#Variable initialization\n",
"a = 1\n",
"\n",
"#Result\n",
"sys.stdout.write(\"\\nSINGLE\\tDOUBLE\\tTRIPLE\")\n",
"\n",
"for a in range(1,5+1):\n",
" sys.stdout.write(\"\\n%d\\t%d\\t%d\"%(a,DOUBLE(a),TRIPLE(a)))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"SINGLE\tDOUBLE\tTRIPLE\n",
"1\t2\t3\n",
"2\t4\t6\n",
"3\t6\t9\n",
"4\t8\t12\n",
"5\t10\t15"
]
}
],
"prompt_number": 13
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.5, Page number: 389<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Undefine a macro\n",
"\n",
"#There is no preprocessor directives in python\n",
"\n",
"def wait():\n",
" return (raw_input(\"\"))\n",
"\n",
"#Result\n",
"for k in range(1,5+1):\n",
" sys.stdout.write(\"%d\\t\"%(k))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"1\t2\t3\t4\t5\t"
]
}
],
"prompt_number": 14
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.6, Page number: 389<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Stringizing operation\n",
"\n",
"#Macro definition\n",
"#in python, function definition can be used as macro\n",
"\n",
"def say(m):\n",
" sys.stdout.write(m)\n",
" \n",
"#Function call\n",
"say(\"Hello\")"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Hello"
]
}
],
"prompt_number": 16
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.7, Page number: 390<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Stringizing operation and macro arguments\n",
"\n",
"#There is no macro in python, function definitions can be used as macros\n",
"\n",
"def DOUBLE(x):\n",
" sys.stdout.write(\"Double of m = %d\\n\"%(x*2))\n",
" \n",
"def TRIPLE(x):\n",
" sys.stdout.write(\"Triple of m = %d\\n\"%(x*3))\n",
" \n",
"#Variable Initialization\n",
"m = int(raw_input(\"Enter a number : \"))\n",
"\n",
"#Function call & Result\n",
"DOUBLE(m)\n",
"TRIPLE(m)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter a number : 5\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Double of m = 10\n",
"Triple of m = 15\n"
]
}
],
"prompt_number": 3
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.8, Page number: 390<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Larger of two numbers using macro with arguments.\n",
"\n",
"import sys\n",
"\n",
"#Macro definition //function definition itself is used as macro\n",
"def MAX(x,y):\n",
" if x > y:\n",
" c = x\n",
" else:\n",
" c = y\n",
" return c\n",
"\n",
"#Variable Initialization\n",
"x = 5\n",
"y = 8\n",
"\n",
"#Function call\n",
"c = MAX(x,y)\n",
"\n",
"#Result\n",
"sys.stdout.write(\"\\nLarger of two numbers = %d\"%(c))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Larger of two numbers = 8"
]
}
],
"prompt_number": 1
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.9, Page number: 391<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Function defined in \"udf.c\" file.\n",
"\n",
"import sys\n",
"#since ipython notebook does not support this function, function is used\n",
"#in python, the udf.c file can be written and saved in udf.py and import command\n",
"#can be used to include that file in this program\n",
"\n",
"def display():\n",
" sys.stdout.write(\"\\nFunction Called\")\n",
" \n",
"#Function call\n",
"display()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Function Called"
]
}
],
"prompt_number": 3
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.10, Page number: 392<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Conditional compilation \n",
"\n",
"import sys\n",
"\n",
"#There is no preprocessor directives in python\n",
"\n",
"LINE = 1\n",
"\n",
"if LINE:\n",
" sys.stdout.write(\"This is line number one\")\n",
"else:\n",
" sys.stdout.write(\"This is line number two\")\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"This is line number one"
]
}
],
"prompt_number": 7
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.11, Page number: 393<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Conditional compilation \n",
"import sys\n",
"\n",
"#There is no preprocessor directives in python\n",
"def E():\n",
" return 1\n",
"\n",
"#Function call\n",
"if E():\n",
" a = 2\n",
" b = 3\n",
" sys.stdout.write(\"A = %d & B = %d\"%(a,b))\n",
"else:\n",
" c = 2\n",
" d = 3\n",
" sys.stdout.write(\"C = %d & D = %d\"%(c,d))\n",
" "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"A = 2 & B = 3"
]
}
],
"prompt_number": 9
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.12, Page number: 394<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Conditional compilation directives \n",
"\n",
"import sys\n",
"\n",
"#There is no preprocessor directives in python\n",
"T = 8\n",
"\n",
"#Result\n",
"if T == 0:\n",
" sys.stdout.write(\"\\nMacro is not defined.\")\n",
"else:\n",
" sys.stdout.write(\"\\nMacro is defined\")"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Macro is defined"
]
}
],
"prompt_number": 12
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.13, Page number: 394<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#User defined error message \n",
"\n",
"import sys\n",
"\n",
"#There is no preprocessor directives in python\n",
"B = 1\n",
"A = 0\n",
"\n",
"#Result\n",
"if A == 0:\n",
" sys.stdout.write(\"MACRO A IS NOT DEFINED.\")\n",
"else:\n",
" sys.stdout.write(\"Macro found.\")"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"MACRO A IS NOT DEFINED."
]
}
],
"prompt_number": 14
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.14, Page number: 397<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Set off certain errors \n",
"\n",
"import sys\n",
"\n",
"#There is no preprocessor directives in python\n",
"x = 2\n",
"y = 1\n",
"\n",
"#Result\n",
"sys.stdout.write(\"\\ny = %d\"%(y))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"y = 1"
]
}
],
"prompt_number": 15
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.15, Page number: 398<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Predefined macros \n",
"\n",
"import sys\n",
"import datetime\n",
"\n",
"#Variable Initialization\n",
"FILE = 'PRE_MA~1.C'\n",
"LINE = 10\n",
"STDC = 1\n",
"\n",
"#Date/time can be set using datetime.date(2001,5,12)\n",
"#Result\n",
"sys.stdout.write(\"\\nDATE : %s\"%('Dec 05 2001')) \n",
"sys.stdout.write(\"\\nTIME : %s\"%(datetime.time(21,7,39)))\n",
"sys.stdout.write(\"\\nFILE NAME : %s\"%(FILE))\n",
"sys.stdout.write(\"\\nLINE NO : %d\"%(LINE))\n",
"sys.stdout.write(\"\\n_STDC_ : %x\"%(STDC))\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"DATE : Dec 05 2001\n",
"TIME : 21:07:39\n",
"FILE NAME : PRE_MA~1.C\n",
"LINE NO : 10\n",
"_STDC_ : 1"
]
}
],
"prompt_number": 31
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.16, Page number: 399<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Display the name of memory model that is currently in use.\n",
"\n",
"import sys\n",
"\n",
"#There is no formal memory model and preprocessor directives in python\n",
"\n",
"TINY = 0\n",
"SMALL = 0\n",
"MEDIUM = 0\n",
"COMPACT = 0\n",
"LARGE = 1\n",
"HUGE = 0\n",
"\n",
"#Result\n",
"if TINY:\n",
" sys.stdout.write(\"\\nTINY %d\"%(TINY))\n",
"else:\n",
" if SMALL:\n",
" sys.stdout.write(\"\\nSMALL %d\"%(SMALL))\n",
" else:\n",
" if MEDIUM:\n",
" sys.stdout.write(\"\\nMEDIUM %d\"%(MEDIUM))\n",
" else:\n",
" if COMPACT:\n",
" sys.stdout.write(\"\\nCOMPACT %d\"%(COMPACT))\n",
" else:\n",
" if LARGE:\n",
" sys.stdout.write(\"\\nLARGE %d\"%(LARGE))\n",
" else:\n",
" sys.stdout.write(\"\\nHUGE %d\"%(HUGE))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"LARGE 1"
]
}
],
"prompt_number": 32
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.17, Page number: 400<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Macro expansions\n",
"\n",
"import sys\n",
"\n",
"#There is no preprocessor directives in python\n",
"ch = raw_input(\"Input a Text : \")\n",
"\n",
"#Result\n",
"sys.stdout.write(\"Text Input : %s\"%(ch))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Input a Text : Programming\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Text Input : Programming"
]
}
],
"prompt_number": 4
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3>Example 12.18, Page number: 401<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Predefined macros.\n",
"\n",
"import sys\n",
"\n",
"#Variable Initialization\n",
"d = raw_input(\"Enter any character : \")\n",
"\n",
"#Result\n",
"f = d.isalpha()\n",
"\n",
"if f != 0:\n",
" sys.stdout.write(\"\\n%c is a letter in\"%(d))\n",
" f = d.isupper()\n",
" if f != 0:\n",
" sys.stdout.write(\" Capital case\")\n",
" else:\n",
" sys.stdout.write(\" Small case\")\n",
"else:\n",
" f = d.isdigit()\n",
" if f != 0:\n",
" sys.stdout.write(\"\\n%c is a digit\"%(d))\n",
" else:\n",
" f = d.ispunct()\n",
" if f != 0:\n",
" sys.stdout.write(\"\\n%c is a punctuation symbol\"%(d))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"stream": "stdout",
"text": [
"Enter any character : C\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"C is a letter in Capital case"
]
}
],
"prompt_number": 5
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
|