Let myList be a list object in Python. How can we access its last two elements ?
myList
list
myList[-2]
myList[:-2]
myList[-2:]
myList[::-2]