Comment obtenir la fin d'un élément dans un tableau Python

array = [1, 2, 3, 4, 5]

print(array[-1])
Sore Snake