命名元组nametuple

Posted smileyes

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了命名元组nametuple相关的知识,希望对你有一定的参考价值。

# coding:utf-8

from collections import namedtuple

Student = namedtuple(‘Student‘, [‘no‘, ‘name‘, ‘age‘, ‘sex‘])
student = Student("2016214338", u"张三", 19, u"")
print student.name
print student.age

-----结果显示--------------------

张三
19

 

以上是关于命名元组nametuple的主要内容,如果未能解决你的问题,请参考以下文章

Python collections系列之可命名元组

Python之内置模块

命名元组内命名元组的 Python 语法

Python namedtuple 命名元组

可命名元组

python_8(模块)