Merge pull request #1927 from TheRakken/patch-1

[python] Minor correction
This commit is contained in:
Adam Bard 2015-10-31 18:19:38 +08:00
commit 4f1b8654a0

View File

@ -238,7 +238,7 @@ li.remove(2) # Raises a ValueError as 2 is not in the list
li.insert(1, 2) # li is now [1, 2, 3, 4, 5, 6] again li.insert(1, 2) # li is now [1, 2, 3, 4, 5, 6] again
# Get the index of the first item found # Get the index of the first item found
li.index(2) # => 3 li.index(2) # => 1
li.index(7) # Raises a ValueError as 7 is not in the list li.index(7) # Raises a ValueError as 7 is not in the list
# Check for existence in a list with "in" # Check for existence in a list with "in"