Newer
Older
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
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"name": "gaps_exercises1.ipynb",
"provenance": [],
"collapsed_sections": []
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
},
"language_info": {
"name": "python"
}
},
"cells": [
{
"cell_type": "markdown",
"source": [
"# Python course - Exercises Gap text"
],
"metadata": {
"id": "kH0p2uT-sQ6y"
}
},
{
"cell_type": "markdown",
"source": [
"Correct the Code"
],
"metadata": {
"id": "uW9SoYEyrlRL"
}
},
{
"cell_type": "code",
"source": [
"# What is missing here? Expected output: Hi!\n",
" ('Hi!')"
],
"metadata": {
"id": "Qflb9AWfrykh"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# Here are two mistakes. Can you find them?\n",
" Hi! I am a comment. How are you?\n",
"\n",
" print('Hello world!')"
],
"metadata": {
"id": "eemU0jTksxu5"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# Multi-line comments\n",
"\n",
"I want to be a\n",
"mutli line comment.\n",
"\"\"\" \n",
"print('Hello world!')"
],
"metadata": {
"id": "2ysNg9wDtaZ9"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# Expected output: 5\n",
"c = 5 \n",
"print( )"
],
"metadata": {
"id": "Vexbuvx1u1NS"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# How to print two strings as one. Expected output: Hello world\n",
"a = 'Hello'\n",
"b = 'world'\n",
"print( a b )"
],
"metadata": {
"id": "cGTJ95-9wzLT"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# Variable types\n",
"# Does the error output help you?\n",
"a = 'Hello'\n",
"b = 0 \n",
"print( a + b )"
],
"metadata": {
"id": "6QiU3l2_xFnP"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# What is missing?\n",
"a = 'Hello'\n",
"b = a\n",
"\n",
"if a == b:\n",
"print('Same!')"
],
"metadata": {
"id": "_YtGF9xqzFoR"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# Print the variable type\n",
"# Expected output: a is of type <class 'str'>\n",
"a = 'How are you?\n",
"print('a is of type', (a))"
],
"metadata": {
"id": "wH0ifA4czyDV"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# Variable names: What is allowed and what not?\n",
"_1th_string = \"Hello\"\n",
"second_string = 'world'\n",
"3rd_string = '!'\n",
"FOURTH_STRING = 'How'\n",
"FIFTH STRING = 'are'\n",
"_6th-string = 'you?'\n",
"\n",
"print(_1th_string, second_string, \n",
" 3rd_string, FOURTH_STRING,\n",
" FIFTH STRING, _6th-string\n",
" )"
],
"metadata": {
"id": "Spcu5lGc0Uv9"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# convert b into float\n",
"a = 2\n",
"b = (a)\n",
"print(b)"
],
"metadata": {
"id": "_TcdURMh2yJZ"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# How to access Lists?\n",
"my_list = [\"!\", \"Hello\", 'you', \"How\", '?', 1, 'are', 2, 3, \"world\"]\n",
"print(my_list)\n",
"print(my_list[ ]) # print '!'\n",
"print(my_list[ ]) # print 'Hello'\n",
"print(my_list[ ]) # print the last element of a list without the real index; here 'world'\n",
"### print 'Hello world! How are you?':\n",
"print(my_list[ ], my_list[ ] ,my_list[0] ,my_list[ ] ,my_list[ ] ,my_list[ ], my_list[4])"
],
"metadata": {
"id": "5VripGXYxBf8"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# Indices of Strings\n",
"a = 'Hello world!'\n",
"print(a[ ]) # only print !\n",
"print(a[ ]) # only print H\n",
"print(a[ ]) # only print 'world', without '!'"
],
"metadata": {
"id": "V3VJP2gg1HLT"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# Dictionaries\n",
"my_dict = { 'chr1' : 'gene1', 'chr2' : 'gene3' }\n",
"print(my_dict[ ]) # print gene1 of the dictionary"
],
"metadata": {
"id": "6e6KYBcQ0qa3"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# Dictionaries2; Find the mistake\n",
"my_dict = { 'chr1' : 'gene1', 'chr1' : 'gene3' }\n",
"print(my_dict[ ]) # print gene1 of the dictionary"
],
"metadata": {
"id": "44dxJxK2bR2n"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# Dictionaries3\n",
"my_dict = { 'chr1' : ['gene1', 'gene2'], 'chr2' : 'gene3' }\n",
"print(my_dict[ ][ ]) # print gene2 of the dictionary"
],
"metadata": {
"id": "RdIWfnVsbpVF"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"# Booleans\n",
"a = 0\n",
"b = 1\n",
"print(bool( )) # print True; insert the right variable\n",
"print(bool( )) # print False; insert the right variable"
],
"metadata": {
"id": "PrmB8FZD0-PQ"
},
"execution_count": null,
"outputs": []
}
]
}