Example 1: how to find item in list python without indexnig
>>> ["foo", "bar", "baz"].index("bar")
1
Example 2: 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 3: find index of sublist in list python
greeting = ['hello','my','name','is','bob','how','are','you','my','name','is']
def find_sub_list(sl,l):
results=[]
sll=len(sl)
for ind in (i for i,e in enumerate(l) if e==sl[0]):
if l[ind:ind+sll]==sl:
results.append((ind,ind+sll-1))
return results
print find_sub_list(['my','name','is'], greeting)
Example 4: python get index and value from list
test = [ 'test 1', 'test 2', 'test 3' ]
for index, value in enumerate( test ):
print( index, value )
Example 5: find an index of an item in a list python
list = ['apples', 'bannas', 'grapes']
Index_Number_For_Bannas = list.index('apples')
print(list[Index_Number_For_Bannas])
Example 6: find index of elem list python
indexPos = listOfElems.index('Ok')
print('First index of element "Ok" in the list : ', indexPos)