how to get the end of a item in a python array

Solutions on MaxInterview for how to get the end of a item in a python array by the best coders in the world

showing results for - "how to get the end of a item in a python array"
Stefania
05 May 2019
1array = [1, 2, 3, 4, 5]
2
3print(array[-1])