python trouver l'index d'un élément dans un tableau

x = ['p','y','t','h','o','n']
print(x.index('o'))
Crowded Corncrake