small grammatical change (GH-96138)

changed a to an under An example that uses most of the list methods
This commit is contained in:
sand8089 2022-08-21 07:56:52 -07:00 committed by GitHub
parent 511dea0a3e
commit d8c7a1174c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ An example that uses most of the list methods::
0
>>> fruits.index('banana')
3
>>> fruits.index('banana', 4) # Find next banana starting a position 4
>>> fruits.index('banana', 4) # Find next banana starting at position 4
6
>>> fruits.reverse()
>>> fruits