Skip to content

Commit ce5ff41

Browse files
author
Adrianpackt
committed
Updated code
1 parent 665d58d commit ce5ff41

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

Lesson01/Exercise09/Exercise09.ipynb

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
"name": "stdout",
1010
"output_type": "stream",
1111
"text": [
12-
"Hola.Senor.\n"
12+
"Hola Senor.\n"
1313
]
1414
}
1515
],
1616
"source": [
17-
"spanish_greeting = 'Hola.'\n",
17+
"spanish_greeting = 'Hola '\n",
1818
"print(spanish_greeting + 'Senor.')"
1919
]
2020
},
@@ -27,17 +27,17 @@
2727
"name": "stdout",
2828
"output_type": "stream",
2929
"text": [
30-
"Hola. Senor.\n"
30+
"Hola Senor.\n"
3131
]
3232
}
3333
],
3434
"source": [
35-
"print(spanish_greeting + ' Senor.')"
35+
"print(spanish_greeting + 'Senor.')"
3636
]
3737
},
3838
{
3939
"cell_type": "code",
40-
"execution_count": 5,
40+
"execution_count": 4,
4141
"metadata": {},
4242
"outputs": [
4343
{
@@ -52,6 +52,13 @@
5252
"greeting = 'Hello'\n",
5353
"print(greeting * 5)"
5454
]
55+
},
56+
{
57+
"cell_type": "code",
58+
"execution_count": null,
59+
"metadata": {},
60+
"outputs": [],
61+
"source": []
5562
}
5663
],
5764
"metadata": {

0 commit comments

Comments
 (0)