list last item in python code example
Example 1: access last element of list python
MyList=["Black","Blue","Red","Green"]
print(MyList[-1])
Example 2: python last element of list
print(list[-1])
MyList=["Black","Blue","Red","Green"]
print(MyList[-1])
print(list[-1])