how to print the index number of list elements in 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]