diff options
author | Stanislav (Stanley) Modrak <44023416+smith558@users.noreply.github.com> | 2023-09-20 12:51:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-20 12:51:11 +0100 |
commit | 38bf258ad82363e8a8eb06064b223aa2354b0186 (patch) | |
tree | 7d15febcfc69b0664f365a5c1991ce75da2ca217 | |
parent | ec40f8d83941430a125b28f37db42ab9ae7bbc80 (diff) |
Fix incorrect expression description
-rw-r--r-- | python.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python.html.markdown b/python.html.markdown index 326ddb95..c9eac8ae 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -226,7 +226,7 @@ li[4] # Raises an IndexError li[1:3] # Return list from index 1 to 3 => [2, 4] li[2:] # Return list starting from index 2 => [4, 3] li[:3] # Return list from beginning until index 3 => [1, 2, 4] -li[::2] # Return list selecting every second entry => [1, 4] +li[::2] # Return list selecting elements with a step size of 2 => [1, 4] li[::-1] # Return list in reverse order => [3, 4, 2, 1] # Use any combination of these to make advanced slices # li[start:end:step] |