Como obter o fim de um item em uma matriz Python
array = [1, 2, 3, 4, 5]
print(array[-1])
Sore Snake
array = [1, 2, 3, 4, 5]
print(array[-1])