can we get the index of element with value in python list code example
Example 1: 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 2: find index of elem list python
indexPos = listOfElems.index('Ok')
print('First index of element "Ok" in the list : ', indexPos)
Example 3: python search list of lists for value return index
[(i, colour.index(c))
for i, colour in enumerate(colours)
if c in colour]