Skip to content

Commit a4cbeab

Browse files
committed
Latest update
1 parent fc1bb81 commit a4cbeab

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

chapter1/14-python.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"output_type": "execute_result"
9292
}
9393
],
94-
"source": "somefloat = 3.1415 # The \"dot\" character represents the radix point.\nsometext = 'pi is about' # Use single or double quotes for strings.\nprint(sometext, somefloat) # This displays several variables concatenated."
94+
"source": "somefloat = 3.1415\nsometext = 'pi is about' # You can also use double quotes.\nprint(sometext, somefloat) # Display several variables."
9595
},
9696
{
9797
"cell_type": "markdown",
@@ -532,7 +532,7 @@
532532
"outputs": [
533533
{
534534
"data": {
535-
"text/plain": "---------------------------------------------------------------------------\nZeroDivisionError Traceback (most recent call last)\n<ipython-input-2-b77ebb6ac6f6> in <module>()\n----> 1 divide(1, 0)\n\n<ipython-input-1-5c74f9fd7706> in divide(a, b)\n 1 def divide(a, b):\n----> 2 return a / b\n\nZeroDivisionError: division by zero"
535+
"text/plain": "---------------------------------------------------------\nZeroDivisionError Traceback (most recent call last)\n<ipython-input-2-b77ebb6ac6f6> in <module>()\n----> 1 divide(1, 0)\n\n<ipython-input-1-5c74f9fd7706> in divide(a, b)\n 1 def divide(a, b):\n----> 2 return a / b\n\nZeroDivisionError: division by zero"
536536
},
537537
"execution_count": 34,
538538
"metadata": {},

chapter5/52-cython.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"outputs": [
124124
{
125125
"data": {
126-
"text/plain": "1000 loops, best of 3: 266 \u00c2\u00b5s per loop"
126+
"text/plain": "1000 loops, best of 3: 266 \u00b5s per loop"
127127
},
128128
"execution_count": 10,
129129
"metadata": {},

0 commit comments

Comments
 (0)