How to find the index of an element in a list in Python

2 Answers

0 votes
lst = [43, 67, 21, 30, 18, 19]

print(lst.index(21))


     
 
'''
run:
 
2
 
'''

 



answered Apr 17, 2021 by avibootz
0 votes
lst = [43, 67, 21, 30, 18, 19]

try:
  i = lst.index(190)
except:
  i = -1
  
print(i)  


     
 
'''
run:
 
-1
 
'''

 



answered Apr 17, 2021 by avibootz
...