The Python code list L is implemented as a stack.
L=[11, 13, 0, 5, 8]
If 11 is the element pushed last into the stack L, which command from the following option is best to pop an element from the Stack L, if not empty.
1
L.pop()
2
L.pop(0)
3
L.remove()
4
L.remove(0)