get thing from position in list python 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: how to find index of list of list in python
[(i, colour.index(c))
for i, colour in enumerate(colours)
if c in colour]