get last element python list code example
Example 1: access last element of list python
MyList=["Black","Blue","Red","Green"]
print(MyList[-1])
Example 2: how to find the last item of a list
list1 = ['a','b','c']
print(list1[-1])
MyList=["Black","Blue","Red","Green"]
print(MyList[-1])
list1 = ['a','b','c']
print(list1[-1])