retour positon d'Ele dans la liste Python

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