index of list in 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: python index of element in list
alphabets = ['a', 'e', 'i', 'o', 'g', 'l', 'i', 'u']
index = alphabets.index('i')
print('The index of i:', index)
index = alphabets.index('i', 4)
print('The index of i:', index)
index = alphabets.index('i', 3, 5)
print('The index of i:', index)
Example 4: python index list in list
>>> list1 = [[10,13,17],[3,5,1],[13,11,12]]
>>> list1[0][2]
17
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]