Let myList be a list object in Python. How can we access all its elements up to the third one ?
myList
list
myList[3]
myList[:3]
myList[3:]
myList[:4]