powrót pozy Ele na liście Python

#Returns the index number of the element/value in a list
x = ['a','b','c']
x.index('b')
NotACoder