码迷,mamicode.com
首页 > 编程语言 > 详细

python 栈

时间:2020-02-08 11:30:55      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:tac   ack   pen   append   pytho   end   出栈   app   pre   

#模拟栈结构
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 栈

标签:tac   ack   pen   append   pytho   end   出栈   app   pre   

原文地址:https://www.cnblogs.com/pygo/p/12275582.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!