Use list.index() method.
fruits = ['apple', 'banana', 'cherry']
position = fruits.index('banana')
print(position)