Skip to content

Commit

Permalink
Clarified Array Slicing Syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
kazakhpunk committed Apr 26, 2024
1 parent e8ff5e2 commit 24e9474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/numpy/numpy-basics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@
"source": [
"### Slices\n",
"\n",
"Slicing syntax is written as `array[start:stop[:step]]`, where **all numbers are optional**.\n",
"Slicing syntax is written as `array[start:stop:step]`, where **all numbers are optional**.\n",
"- defaults: \n",
" - start = 0\n",
" - stop = len(dim)\n",
Expand Down

0 comments on commit 24e9474

Please sign in to comment.