python中namedtuple介绍

Posted

tags:

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

namedtuple:
namedtuple类位于collections模块,有了namedtuple后通过属性访问数据能够让我们的代码更加的直观更好维护。
namedtuple能够用来创建类似于元祖的数据类型,除了能够用索引来访问数据,能够迭代,还能够方便的通过属性名来访问数据。

在python中,传统的tuple类似于数组,只能通过下表来访问各个元素,我们还需要注释每个下表代表什么数据。通过使用namedtuple,每哥元素有了自己的名字。类似于C语言中的struct,这样数据的意义就可以一目了然。生命namedtuple是非常简单方便的。
from collections import namedtuple
 
Friend=namedtuple("Friend",[name,age,email])
 
f1=Friend(xiaowang,33,[email protected])
print(f1)
print(f1.age)
print(f1.email)
f2=Friend(name=xiaozhang,email=[email protected],age=30)
print(f2)
 
name,age,email=f2
print(name,age,email)

 





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

collections模块(python中的扩展数据类型)

namedtuple工厂函数精讲

python namedtuple(命名元组)

Python的collections模块中namedtuple结构使用示例

python collections模块中namedtuple()

python 命名元组(namedtuple)