Fix typo in introduction.rst (#100266)

This commit is contained in:
Mikhail Berkov 2022-12-16 11:26:30 +01:00 committed by GitHub
parent 101cfe679f
commit 2cd5146f27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ Indices may also be negative numbers, to start counting from the right::
Note that since -0 is the same as 0, negative indices start from -1.
In addition to indexing, *slicing* is also supported. While indexing is used
to obtain individual characters, *slicing* allows you to obtain substring::
to obtain individual characters, *slicing* allows you to obtain a substring::
>>> word[0:2] # characters from position 0 (included) to 2 (excluded)
'Py'