Skip to content

Commit 81b1663

Browse files
committed
getting started
1 parent ccd45e4 commit 81b1663

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

basics/01.gettingstarted.ipynb

+12-9
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,13 @@
197197
},
198198
"outputs": [
199199
{
200-
"name": "stdout",
201-
"output_type": "stream",
202-
"text": [
203-
"Hello World.\n"
200+
"ename": "",
201+
"evalue": "",
202+
"output_type": "error",
203+
"traceback": [
204+
"\u001b[1;31mRunning cells with 'c:\\Users\\20194060\\AppData\\Local\\Programs\\Python\\Python39\\python.exe' requires the ipykernel package.\n",
205+
"\u001b[1;31mRun the following command to install 'ipykernel' into the Python environment. \n",
206+
"\u001b[1;31mCommand: 'c:/Users/20194060/AppData/Local/Programs/Python/Python39/python.exe -m pip install ipykernel -U --user --force-reinstall'"
204207
]
205208
}
206209
],
@@ -211,11 +214,11 @@
211214
"# Using the print function to keep track of certain values in the code.\n",
212215
"a = 2+3\n",
213216
"b = a+6\n",
214-
"print('b: ' + b)\n",
217+
"print('b: ' + str(b))\n",
215218
"c = a+b\n",
216-
"print('c: ' + c)\n",
219+
"print('c: ' + str(c))\n",
217220
"d = c/2+3\n",
218-
"print('d: ' + d)"
221+
"print('d: ' + str(d))"
219222
]
220223
},
221224
{
@@ -237,7 +240,7 @@
237240
],
238241
"source": [
239242
"my_name = \"Lasitha\" # This is a variable to store the user name\n",
240-
"print(\"Hello and welcome to Pyhton workshop, \" + my_name + \"!\")\n"
243+
"print(\"Hello and welcome to the Python workshop, \" + my_name + \"!\")\n"
241244
]
242245
},
243246
{
@@ -421,7 +424,7 @@
421424
"name": "python",
422425
"nbconvert_exporter": "python",
423426
"pygments_lexer": "ipython3",
424-
"version": "3.10.7"
427+
"version": "3.9.1"
425428
},
426429
"toc-autonumbering": true,
427430
"toc-showcode": false,

0 commit comments

Comments
 (0)