We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2ef4ec commit 477bcccCopy full SHA for 477bccc
Introduction to NumPy.ipynb
@@ -1015,6 +1015,17 @@
1015
"study_minutes[2]"
1016
]
1017
},
1018
+ {
1019
+ "cell_type": "markdown",
1020
+ "metadata": {},
1021
+ "source": [
1022
+ "## Slicing\n",
1023
+ "* Works a lot like normal list slicing.\n",
1024
+ "* You can use commas to separate each dimension slice.\n",
1025
+ "* Always returns a data view **not a copy**\n",
1026
+ "* You can access the base object using the `ndarray.base` property"
1027
+ ]
1028
+ },
1029
{
1030
"cell_type": "code",
1031
"execution_count": 55,
0 commit comments