position dans le tableau Python

a_list = [1, 2, 3]

position_of_three = a_list.index(3)

print(position_of_three)
Letslass