StackpopOn this pageStack.popRemove the element at the top of the stackUsagepop()Returns: element Returns and remove the element at the top of the stack Examplefrom jellybeans.structures import Stackst = Stack()st.push(20)st.push(29)st.push(38)st.push(78)print(st.pop()) # 78print(st) # 38 <- 29 <- 20