get all index position of python list code example
Example 1: how to find the position in a list python
lst = [4, 6, 5]
lst.index(6) # will return 1
Example 2: get all index of item in list python
indices = [i for i, x in enumerate(my_list) if x == "whatever"]