for last item in list pytholn code example
Example 1: last element of list python
list1 = ['a','b','c']
print(list1[-1])
Example 2: python last element of list
>>> list[-1:] # returns indexed value
[3]
>>> list[-1] # returns value
3
list1 = ['a','b','c']
print(list1[-1])
>>> list[-1:] # returns indexed value
[3]
>>> list[-1] # returns value
3