Python collections模块--nametuple

2017-01-09  本文已影响86人  SateZheng

nametuple 可命名元祖

nametuple 为元祖中每个位置分配含义,可以在使用常规元祖的地方使用,并且添加了通过名称而不是位置索引访问字段的功能。

In [97]: Mytuple = collections.namedtuple('mytuple', ['x','y'])

In [98]: Mytuple(1,2)
Out[98]: mytuple(x=1, y=2)

In [101]: n = Mytuple(1,2)

In [102]: n
Out[102]: mytuple(x=1, y=2)

In [103]: n.x
Out[103]: 1
上一篇下一篇

猜你喜欢

热点阅读