Skip to content

Commit 79494e9

Browse files
committed
Typo
1 parent 5a7ee45 commit 79494e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,9 +386,9 @@ We can also do *slicing* operations on most sequences::
386386

387387
>>> people[1:2]
388388
['John']
389-
>>> people[:1] # Implcit start at 0
389+
>>> people[:1] # Implicit start at 0
390390
['Paul']
391-
>>> people[1:] # Implcit end at len(people)
391+
>>> people[1:] # Implicit end at len(people)
392392
['John', 'George', 'Ringo']
393393
>>> people[::2] # Take every other item
394394
['Paul', 'George']

0 commit comments

Comments
 (0)