Как получить конец предмета в массиве Python
array = [1, 2, 3, 4, 5]
print(array[-1])
Sore Snake
array = [1, 2, 3, 4, 5]
print(array[-1])