Cómo obtener el final de un artículo en una matriz de Python

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

print(array[-1])
Sore Snake