So erhalten Sie das Ende eines Gegenstands in einem Python -Array

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

print(array[-1])
Sore Snake