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

Python的内置list类

时间:2017-09-20 14:41:53      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:font   layer   __name__   http   span   es2017   john   compose   lis   

技术分享

技术分享

class NamedList(list):
def __init__(self, a_name):
list.__init__([])
self.name = a_name

if __name__ == ‘__main__‘:
johnny = NamedList(‘John Paul Jones‘)
print(johnny)
print(type(johnny))
print(dir(johnny))
johnny.append(‘Bass Player‘)
johnny.extend([‘Composer‘, ‘Arranger‘, ‘Musician‘])
print(johnny)
print(johnny.name)

Python的内置list类

标签:font   layer   __name__   http   span   es2017   john   compose   lis   

原文地址:http://www.cnblogs.com/sammy1989/p/7560417.html

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