Answers for "python get the index of the last item in listbox"

3

get last element of a list python

a = [1, 2, 3, 4]
print(a[-1])
#prints: 4

print(a[-2])
#prints: 3
Posted by: Guest on January-16-2021

Code answers related to "python get the index of the last item in listbox"

Python Answers by Framework

Browse Popular Code Answers by Language