Posisi dalam array python

a_list = [1, 2, 3]

position_of_three = a_list.index(3)

print(position_of_three)
Letslass