I\'m currently learning about the pop() function in Python and have a question.
pop()
>>> a = [1,2,3,4] >>> a.pop(3) #or a.pop() 4