python 简单了解namedtuple

Posted 筱筱的春天

tags:

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

namedtuple类位于collections模块,有了namedtuple后通过属性访问数据能够让我们的代码更加的直观更好维护

namedtuple能够用来创建类似于元祖的数据类型,除了能够用索引来访问数据,能够迭代,还能够方便的通过属性名来访问数据

from collections import namedtuple
Friend =namedtuple("Friend",[‘name‘,‘age‘,‘email‘])
f1=Friend(‘giga‘,38,‘[email protected]‘)
print(f1)
print(f1.age)
print(f1.email)
f2=Friend(name=‘jjuu‘,email=‘[email protected]‘,age=15)
print(f2)

name,age,email=f2
print(name,age,email)



out
Friend(name=‘giga‘, age=38, email=‘[email protected]‘)
38
[email protected]
Friend(name=‘jjuu‘, age=15, email=‘[email protected]‘)
jjuu 15 [email protected]

 

以上是关于python 简单了解namedtuple的主要内容,如果未能解决你的问题,请参考以下文章

namedtuple工厂函数精讲

Python命名约定-namedtuples [重复]

python中namedtuple介绍

python高级用法之命名元组namedtuple

python模块与包简单整理

Python数据结构与算法---namedtuple