StackpeekOn this pageStack.peekTake a look at the element at the top of the stackUsagepeek()Returns: Boolean Returns 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.peek()) # 78print(st) # 78 <- 38 <- 29 <- 20