How would you implement the "push" operation on a stack in Python?
stack.insert(0, element)
stack.append(element)
stack.add(element)
stack.addFront(element)
This question is part of this quiz :