get the index of a value in a list python code example
Example 1: get index of list python
list.index(element)
Example 2: python find index by value
>>> ["foo", "bar", "baz"].index("bar")
1
Example 3: get index of item in list
list.index(element, start, end)
Example 4: how to index lists in python
# Make the list
list = ['bananas', 'apples', 'watermellon']
# Print the word apples from the list
print(list[1])
Example 5: how to find index of list of list in python
[(i, colour.index(c))
for i, colour in enumerate(colours)
if c in colour]