If I have a series of lists in a dictionary (for example):
{'Name': ['Thomas', 'Steven', 'Pauly D'], 'Age': [30, 50, 29]}
and I want to find the strings position so I can then get the same position from the other list.
So e.g.
if x = 'Thomas' #is in position 2:
y = dictionary['Age'][2]