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