python 命名元组 namedtuple

python命名元组

利用 collections 模块中的 namedtuple 函数

from collections import namedtuple
namedtuple(typename, field_names) 

typename:命名元组的名称;
field_names: 元祖中元素的名称此字段有多种表达方式

三种命名元组定义方式

Student = namedtuple("Student",'id name age sex love')
Student = namedtuple("Student"<

你可能感兴趣的:(大数据,python命名元组,namedtuple)