详解Python中namedtuple的使用
namedtuple是python中存储数据类型,比较常见的数据类型还有有list和tuple数据类型。相比于list,tuple中的元素不可修改,在映射中可以当键使用。
namedtuple:
namedtuple类位于collections模块,有了namedtuple后通过属性访问数据能够让我们的代码更加的直观更好维护。
namedtuple能够用来创建类似于元祖的数据类型,除了能够用索引来访问数据,能够迭代,还能够方便的通过属性名来访问数据。
接下来通过本文给大家分享python namedtuple()的使用,一起看看吧!
基本定义
collections.
namedtuple
(typename, field_names, *, rename=false, defaults=none, module=none)
(1)返回一个名为typename的新元组子类
(2)新的子类用于创建类似元组的对象,这些对象具有可通过属性查找访问的字段以及可索引和可迭代的字段field_names
typename
(1)typename表示这个子类的名字,比如c++、python、java中的类名
field_names
(1)field_names是一个字符串序列,例如['x','y']
(2)field_names可以是单个字符串,每个字段名都用空格或逗号分隔,例如'x y'或'x,y'
others
(1)其它的参数并不常用,这里不再介绍啦
基本样例
from collections import namedtuple # 基本例子 point = namedtuple('point',['x','y']) # 类名为point,属性有'x'和'y' p = point(11, y=22) # 用位置或关键字参数实例化,因为'x'在'y'前,所以x=11,和函数参数赋值一样的 print(p[0]+p[1]) # 我们也可以使用下标来访问 # 33 x, y = p # 也可以像一个元组那样解析 print(x,y) # (11, 22) print(p.x+p.y) # 也可以通过属性名来访问 # 33 print(p) # 通过内置的__repr__函数,显示该对象的信息 # point(x=11, y=22)
classmethod somenamedtuple.
_make
(iterable)
(1)从一个序列或者可迭代对象中直接对field_names中的属性直接赋值,返回一个对象
t = [11, 22] # 列表 list p = point._make(t) # 从列表中直接赋值,返回对象 print(point(x=11, y=22)) # point(x=11, y=22)
classmethod somenamedtuple._asdict
()
(1)之前也说过了,说它是元组,感觉更像一个带名字的字典
(2)我们也可以直接使用_asdict()将它解析为一个字典dict
p = point(x=11, y=22) # 新建一个对象 d = p._asdict() # 解析并返回一个字典对象 print(d) # {'x': 11, 'y': 22}
classmethod somenamedtuple._replace
(**kwargs)
(1)这是对某些属性的值,进行修改的,从replace这个单词就可以看出来
(2)注意该函数返回的是一个新的对象,而不是对原始对象进行修改
p = point(x=11, y=22) # x=11,y=22 print(p) # point(x=11, y=22) d = p._replace(x=33) # x=33,y=22 新的对象 print(p) # point(x=11, y=22) print(d) # point(x=33, y=22)
classmethod somenamedtuple._fields
(1)该方法返回该对象的所有属性名,以元组的形式
(2)因为是元组,因此支持加法操作
print(p._fields) # 查看属性名 # ('x', 'y') color = namedtuple('color', 'red green blue') pixel = namedtuple('pixel', point._fields + color._fields) # 新建一个子类,使用多个属性名 q = pixel(11, 22, 128, 255, 0) print(q)
classmethod somenamedtuple._field_defaults
(1)该方法是python3.8新增的函数,因为我的版本是3.6,无法验证其正确性
(2)下面给出官方的示例
account = namedtuple('account', ['type', 'balance'], defaults=[0]) print(account._field_defaults) #{'balance': 0} print(account('premium')) #account(type='premium', balance=0)
getattr()函数
(1)用来获得属性的值
print(getattr(p, 'x')) # 11
字典创建namedtuple()
(1)从字典来构建namedtuple的对象
d = {'x': 11, 'y': 22} # 字典 p = point(**d) # 双星号是重点 print(p) # point(x=11, y=22)
csv or sqlite3
(1)同样可以将从csv文件或者数据库中读取的文件存储到namedtuple中
(2)这里每次存的都是一行的内容
employeerecord = namedtuple('employeerecord', 'name, age, title, department, paygrade') import csv for emp in map(employeerecord._make, csv.reader(open("employees.csv", "r"))): # 这里每行返回一个对象 注意! print(emp.name, emp.title) import sqlite3 conn = sqlite3.connect('/companydata') # 连接数据库 cursor = conn.cursor() cursor.execute('select name, age, title, department, paygrade from employees') for emp in map(employeerecord._make, cursor.fetchall()): # 每行返回一个对象 注意! print(emp.name, emp.title)
类的继承
(1)接下来用deepmind的开源项目graph_nets中的一段代码来介绍
nodes = "nodes" edges = "edges" receivers = "receivers" senders = "senders" globals = "globals" n_node = "n_node" n_edge = "n_edge" graph_data_fields = (nodes, edges, receivers, senders, globals) graph_number_fields = (n_node, n_edge) class graphstuple( # 定义元组子类名 以及字典形式的键名(属性名) collections.namedtuple("graphstuple", graph_data_fields + graph_number_fields)): # 这个函数用来判断依赖是否满足,和我们的namedtuple关系不大 def _validate_none_fields(self): """asserts that the set of `none` fields in the instance is valid.""" if self.n_node is none: raise valueerror("field `n_node` cannot be none") if self.n_edge is none: raise valueerror("field `n_edge` cannot be none") if self.receivers is none and self.senders is not none: raise valueerror( "field `senders` must be none as field `receivers` is none") if self.senders is none and self.receivers is not none: raise valueerror( "field `receivers` must be none as field `senders` is none") if self.receivers is none and self.edges is not none: raise valueerror( "field `edges` must be none as field `receivers` and `senders` are " "none") # 用来初始化一些参数 不是重点 def __init__(self, *args, **kwargs): del args, kwargs # the fields of a `namedtuple` are filled in the `__new__` method. # `__init__` does not accept parameters. super(graphstuple, self).__init__() self._validate_none_fields() # 这就用到了_replace()函数,注意只要修改了属性值 # 那么就返回一个新的对象 def replace(self, **kwargs): output = self._replace(**kwargs) # 返回一个新的实例 output._validate_none_fields() # pylint: disable=protected-access 验证返回的新实例是否满足要求 return output # 这是为了针对tensorflow1版本的函数 # 返回一个拥有相同属性的对象,但是它的属性值是输入的大小和类型 def map(self, field_fn, fields=graph_feature_fields): # 对每个键应用函数 """applies `field_fn` to the fields `fields` of the instance. `field_fn` is applied exactly once per field in `fields`. the result must satisfy the `graphstuple` requirement w.r.t. `none` fields, i.e. the `senders` cannot be `none` if the `edges` or `receivers` are not `none`, etc. args: field_fn: a callable that take a single argument. fields: (iterable of `str`). an iterable of the fields to apply `field_fn` to. returns: a copy of the instance, with the fields in `fields` replaced by the result of applying `field_fn` to them. """ return self.replace(**{k: field_fn(getattr(self, k)) for k in fields}) # getattr(self, k) 获取的是键值对中的值, k表示键
到此这篇关于详解python中namedtuple的使用的文章就介绍到这了,更多相关python namedtuple的使用内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 五花肉炒辣椒的做法有哪些