题解 | 用列表实现栈
用列表实现栈
https://www.nowcoder.com/practice/38187b9f30e44fdaa496751b82b0adbf
stack = [1,2,3,4,5] stack.pop() print(stack) stack.pop() print(stack) input_element=int(input()) stack.append(input_element) print(stack)
用列表实现栈
https://www.nowcoder.com/practice/38187b9f30e44fdaa496751b82b0adbf
stack = [1,2,3,4,5] stack.pop() print(stack) stack.pop() print(stack) input_element=int(input()) stack.append(input_element) print(stack)
相关推荐
