how to get the last three values in list python code example
Example 1: access last element of list python
MyList=["Black","Blue","Red","Green"]
print(MyList[-1])
Example 2: last element in list py
l = [1,2,3,4,5]
last = l[len(l)-1]
MyList=["Black","Blue","Red","Green"]
print(MyList[-1])
l = [1,2,3,4,5]
last = l[len(l)-1]