45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:Python栈类代码实例分享

Python栈类代码实例分享

2015-07-06 18:28:34 来源:www.45fan.com 【

Python栈类代码实例分享

本文实例讲述了python栈类。分享给大家供大家参考。具体如下:

class Path: #a list used like a stack
    def __init__(self):
        self.P = []
    def push(self,t):
        self.P.append(t)
    def pop(self):
        return self.P.pop()
    def top(self):
        return self.P[-1]
    def remove(self):
        self.P.pop(0)
    def isEmpty(self):
        return (len(self.P)==0)
    def printPath(self):
        print self.P

希望本文所述对大家的Python程序设计有所帮助。


本文地址:http://www.45fan.com/a/question/13694.html
Tags: python 本文 栈类
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部