Obtenga el último elemento de Array Python
list = [4,3,2,5,4]
last=list[len(list)-1]
Lazy Lemur
list = [4,3,2,5,4]
last=list[len(list)-1]