Create a Python class that implements the methods of a stack structure.
Implement the following methods.
push
add an item to the stackpop
remove and return the most recent item from the stackpeek
return the most recent item from the stack
Whiteboard Images