Skip to content

Commit eeae807

Browse files
committed
Update 13-Numpy.ipynb
1 parent b20d35e commit eeae807

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

notebooks/13-Numpy.ipynb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
}
99
},
1010
"source": [
11-
"# What provide Numpy to Python ?\n",
11+
"# Numpy\n",
12+
"\n",
13+
"## What provide Numpy to Python ?\n",
1214
"\n",
1315
"- `ndarray` multi-dimensional array object\n",
1416
"- derived objects such as masked arrays and matrices\n",
@@ -2108,7 +2110,7 @@
21082110
],
21092111
"source": [
21102112
"a=np.array([5,3,6,1,6,7,9,0,8])\n",
2111-
"np.sort(a) #. Return a view"
2113+
"np.sort(a) # Return a copy"
21122114
]
21132115
},
21142116
{

0 commit comments

Comments
 (0)