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