diff options
author | Andre Polykanine <ap@oire.me> | 2019-11-14 02:51:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-14 02:51:59 +0200 |
commit | 50f77dd0d011500b9bc7aa995257562936a749c6 (patch) | |
tree | 73f3c47b74f317fd46334e72f092d4f40f065a2b | |
parent | d37473589491fc16cdd96e33e8c80ed7cc083183 (diff) | |
parent | ad6ba65e7ff7a6646cc13534e49e7eb664e829e5 (diff) |
Merge pull request #3769 from caminsha/python3/en-en/TypoFix
[python3/en] Fixed a small typo
-rw-r--r-- | python3.html.markdown | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python3.html.markdown b/python3.html.markdown index 61c53408..d09c2819 100644 --- a/python3.html.markdown +++ b/python3.html.markdown @@ -8,6 +8,7 @@ contributors: - ["evuez", "http://github.com/evuez"] - ["Rommel Martinez", "https://ebzzry.io"] - ["Roberto Fernandez Diaz", "https://github.com/robertofd1995"] + - ["caminsha", "https://github.com/caminsha"] filename: learnpython3.py --- @@ -230,7 +231,7 @@ li[4] # Raises an IndexError # (It's a closed/open range for you mathy types.) 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 uptil index 3 => [1, 2, 4] +li[:3] # Return list from beginning until index 3 => [1, 2, 4] li[::2] # Return list selecting every second entry => [1, 4] li[::-1] # Return list in reverse order => [3, 4, 2, 1] # Use any combination of these to make advanced slices |