get last 2 elements of list python code example
Example 1: access last element of list python
MyList=["Black","Blue","Red","Green"]
print(MyList[-1])
Example 2: get every item but the last item of python list
x = [1, 2, 3, 4]
#same array, but the last item.
notLast = x[0:-1]