fast way to get index of element in list python code example
Example 1: get index of all element in list python
indices = [i for i, x in enumerate(my_list) if x == "whatever"]
Example 2: how to find index of list of list in python
[(i, colour.index(c))
for i, colour in enumerate(colours)
if c in colour]