namedtuple -> 命名元组

这里的命名指的是对元组中元素的命名。

通过一个例子来看

 import collections

 Person = collections.namedtuple("Person", ['name', 'height', 'age'])

 WaltHwang = Person('WaltHwang',189,22)

 print(WaltHwang.age)

namedtuple位于collections模块中,我们先导入collections模块。

然后创建一个名为Person的命名元组,我们可以看到,namedtuple接收两个参数。

第一个参数是namedtuple的名字,第二个参数是对Person元组中的元素命名。

之后我们就可以创建Person命名元组,并通过其属性名来访问元素。

05-11 22:47