命名元组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的主要内容,如果未能解决你的问题,请参考以下文章