I want to find the location(s) of a specific item in a list of lists. It should return a number, where the number represents the indexes for a specific instance of the item. For example:
list = [['1', '2', None, '6'], ['7', None, '1', '4']]
getPosition(not None) #returns [1]
I'm always want to check the third element in every list.