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

python 栈

时间:2019-09-28 23:08:40      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:style   bsp   init   python   pre   class   nbsp   print   span   

栈的特点:先进后出

class Stack:

    def __init__(self):
        self.data = []

    def push(self, val):
        self.data.append(val)

    def pop(self):
        ret = self.data.pop()
        return ret


s = Stack()
s.push(love)
s.push(python)
print(s.pop())      # python

 

python 栈

标签:style   bsp   init   python   pre   class   nbsp   print   span   

原文地址:https://www.cnblogs.com/wt7018/p/11605266.html

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