python 栈
Posted i勤能补拙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 栈相关的知识,希望对你有一定的参考价值。
#模拟栈结构
stack = []
#压栈(向栈里存数据)
stack.append("A")
print(stack)
stack.append("B")
print(stack)
stack.append("C")
print(stack)
#出栈(在栈里取数据)
res1 = stack.pop()
print("res1 =", res1)
print(stack)
res2 = stack.pop()
print("res2 =", res2)
print(stack)
res3 = stack.pop()
print("res3 =", res3)
print(stack)
以上是关于python 栈的主要内容,如果未能解决你的问题,请参考以下文章