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
|
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 1 : Types, Variables, and Standard I/O: Lost Fortune"
]
},
{
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"Exmaple 1.1 Page no : 6"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"print \"Game Over!\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Game Over!\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"Exmaple 1.2 Page no : 11"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"print \"Game Over!\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Game Over!\n"
]
}
],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"Exmaple 1.3 Page no : 12"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"print \"Game Over!\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Game Over!\n"
]
}
],
"prompt_number": 3
},
{
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"Exmaple 1.4 Page no : 13"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"print \"7 + 3 = \" , 7 + 3\n",
"print \"7 - 3 = \" , 7 - 3\n",
"print \"7 * 3 = \" , 7 * 3 \n",
"print \"7 / 3 = \" , 7 / 3 \n",
"print \"7.0 / 3.0 = \" , 7.0 / 3.0 \n",
"print \"7 % 3 = \" , 7 % 3 \n",
"print \"7 + 3 * 5 = \" , 7 + 3 * 5\n",
"print \"(7 + 3) * 5 = \" , (7 + 3) * 5"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"7 + 3 = 10\n",
"7 - 3 = 4\n",
"7 * 3 = 21\n",
"7 / 3 = 2\n",
"7.0 / 3.0 = 2.33333333333\n",
"7 % 3 = 1\n",
"7 + 3 * 5 = 22\n",
"(7 + 3) * 5 = 50\n"
]
}
],
"prompt_number": 4
},
{
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"Example 1.5 Page no : 17"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"score = 0;\n",
"distance = 1200.76;\n",
"playAgain = 'y'\n",
"shieldsUp = True;\n",
"lives = 3;\n",
"aliensKilled = 10;\n",
"engineTemp = 6572.89;\n",
"print \"\\nscore: \" , score \n",
"print \"distance: \" , distance\n",
"print \"playAgain: \" , playAgain\n",
"#skipping shieldsUp since you dont generally print Boolean values\n",
"print \"lives: \" , lives\n",
"print \"aliensKilled: \" , aliensKilled\n",
"print \"engineTemp: \" , engineTemp\n",
"\n",
"print \"\\nHow much fuel? \",\n",
"fuel = 5 # raw_input()\n",
"\n",
"print \"fuel: \" , fuel\n",
"bonus = 10;\n",
"print \"\\nbonus: \" , bonus"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"score: 0\n",
"distance: 1200.76\n",
"playAgain: y\n",
"lives: 3\n",
"aliensKilled: 10\n",
"engineTemp: 6572.89\n",
"\n",
"How much fuel? fuel: 5\n",
"\n",
"bonus: 10\n"
]
}
],
"prompt_number": 5
},
{
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"Example 1.6 Page no : 35"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"score = 5000;\n",
"print \"score: \" , score\n",
"#altering the value of a variable\n",
"score = score + 100;\n",
"print \"score: \" , score\n",
"#combined assignment operator\n",
"score += 100;\n",
"print \"score: \" , score\n",
"# increment operators\n",
"lives = 3;\n",
"lives += 1\n",
"print \"lives: \", lives\n",
"\n",
"lives = 3;\n",
"lives += 1\n",
"print \"lives: \", lives\n",
"\n",
"lives = 3;\n",
"lives += 1\n",
"bonus = lives * 10;\n",
"print \"lives, bonus = \" , lives , \", \" , bonus \n",
"\n",
"lives = 3;\n",
"bonus = lives * 10;\n",
"lives += 1\n",
"print \"lives, bonus = \" , lives , \", \" , bonus \n",
"#integer wrap around\n",
"score = 4294967295;\n",
"print \"\\nscore: \" , score\n",
"score += 1\n",
"print \"score: \", score "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"score: 5000\n",
"score: 5100\n",
"score: 5200\n",
"lives: 4\n",
"lives: 4\n",
"lives, bonus = 4 , 40\n",
"lives, bonus = 4 , 30\n",
"\n",
"score: 4294967295\n",
"score: 4294967296\n"
]
}
],
"prompt_number": 6
},
{
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"Example 1.7 Page no : 30"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"ALIEN_POINTS = 150;\n",
"aliensKilled = 10;\n",
"score = aliensKilled * ALIEN_POINTS;\n",
"print \"score: \" , score\n",
"NOVICE = 0\n",
"EASY = 1\n",
"NORMAL =2\n",
"HARD=3\n",
"UNBEATABLE=4\n",
"myDifficulty = EASY;\n",
"FIGHTER_COST = 25\n",
"BOMBER_COST=26\n",
"CRUISER_COST = 50\n",
"myShipCost = BOMBER_COST;\n",
"print \"\\nTo upgrade my ship to a Cruiser will cost\" , (CRUISER_COST - myShipCost) , \" Resource Points.\\n\";"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"score: 1500\n",
"\n",
"To upgrade my ship to a Cruiser will cost 24 Resource Points.\n",
"\n"
]
}
],
"prompt_number": 7
},
{
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"Example 1.8 Page no : 33"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"GOLD_PIECES = 900;\n",
"\n",
"print \"Welcome to Lost Fortune\\n\\n\";\n",
"print \"Please enter the following for your personalized adventure\\n\";\n",
"print \"Enter a number: \";\n",
"adventurers = 10 # int(raw_input())\n",
"print \"Enter a number, smaller than the first: \";\n",
"killed = 5 #int(raw_input())\n",
"\n",
"survivors = adventurers - killed;\n",
"print \"Enter your last name: \";\n",
"leader = 'xyz' #raw_input()\n",
"#tell the story\n",
"print \"\\nA brave group of \" , adventurers , \" set out on a quest \";\n",
"print \"- in search of the lost treasure of the Ancient Dwarves. \";\n",
"print \"The group was led by that legendary rogue, \" , leader , \".\\n\";\n",
"print \"\\nAlong the way, a band of marauding ogres ambushed the party. \";\n",
"print \"All fought bravely under the command of \" , leader,\n",
"print \", and the ogres were defeated, but at a cost. \",\n",
"print \"Of the adventurers, \" , killed , \" were vanquished, \",\n",
"print \"leaving just \" , survivors , \" in the group.\\n\"\n",
"\n",
"print \"\\nThe party was about to give up all hope. \";\n",
"print \"But while laying the deceased to rest, \";\n",
"print \"they stumbled upon the buried fortune. \";\n",
"print \"So the adventurers split \" , GOLD_PIECES , \" gold pieces.\" ,\n",
"print leader , \" held on to the extra \" , (GOLD_PIECES % survivors),\n",
"print \" pieces to keep things fair of course.\\n\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Welcome to Lost Fortune\n",
"\n",
"\n",
"Please enter the following for your personalized adventure\n",
"\n",
"Enter a number: \n",
"Enter a number, smaller than the first: \n",
"Enter your last name: \n",
"\n",
"A brave group of 10 set out on a quest \n",
"- in search of the lost treasure of the Ancient Dwarves. \n",
"The group was led by that legendary rogue, xyz .\n",
"\n",
"\n",
"Along the way, a band of marauding ogres ambushed the party. \n",
"All fought bravely under the command of xyz , and the ogres were defeated, but at a cost. Of the adventurers, 5 were vanquished, leaving just 5 in the group.\n",
"\n",
"\n",
"The party was about to give up all hope. \n",
"But while laying the deceased to rest, \n",
"they stumbled upon the buried fortune. \n",
"So the adventurers split 900 gold pieces. xyz held on to the extra 0 pieces to keep things fair of course.\n",
"\n"
]
}
],
"prompt_number": 8
}
],
"metadata": {}
}
]
}
|