Python的collections模块中namedtuple结构使用示例
更新时间:2024年09月18日 17:15:11 作者:xrzs
namedtuple顾名思义,就是名字+元组的数据结构,下面就来看一下Python的collections模块中namedtuple结构使用示例
namedtuple 就是命名的 tuple,比较像 C 语言中 struct。一般情况下的 tuple 是 (item1, item2, item3,...),所有的 item 都只能按照 index 访问,没有明确的称呼,而 namedtuple 就是事先把这些 item 命名,以后可以方便访问。
from collections import namedtuple # 初始化需要两个参数,第一个是 name,第二个参数是所有 item 名字的列表。 coordinate = namedtuple('Coordinate', ['x', 'y']) c = coordinate(10, 20) # or c = coordinate(x=10, y=20) c.x == c[0] c.y == c[1] x, y = c
namedtuple 还提供了 _make 从 iterable 对象中创建新的实例:
coordinate._make([10,20])
再来举个栗子:
# -*- coding: utf-8 -*- """ 比如我们用户拥有一个这样的数据结构,每一个对象是拥有三个元素的tuple。 使用namedtuple方法就可以方便的通过tuple来生成可读性更高也更好用的数据结构。 """ from collections import namedtuple websites = [ ('Sohu', 'http://www.google.com/', u'张某某'), ('Sina', 'http://www.sina.com.cn/', u'王某某'), ('163', 'http://www.163.com/', u'丁某') ] Website = namedtuple('Website', ['name', 'url', 'founder']) for website in websites: website = Website._make(website) print website print website[0], website.url
结果:
Website(name='Sohu', url='http://www.google.com/', founder=u'\u5f20\u671d\u9633') Sohu http://www.google.com/ Website(name='Sina', url='http://www.sina.com.cn/', founder=u'\u738b\u5fd7\u4e1c') Sina http://www.sina.com.cn/ Website(name='163', url='http://www.163.com/', founder=u'\u4e01\u78ca') 163 http://www.163.com/
相关文章
详解pyenv下使用python matplotlib模块的问题解决
这篇文章主要介绍了详解pyenv下使用python matplotlib模块的问题解决,非常具有实用价值,需要的朋友可以参考下2018-11-11python条件判断中not、is、is not、is not None、is None代码实例
None是python中的一个特殊的常量,表示一个空的对象,下面这篇文章主要给大家介绍了关于python条件判断中not、is、is not、is not None、is None的相关资料,需要的朋友可以参考下2024-03-03
最新评论