collections.namedtuple()命名序列元素
程序员文章站
2024-01-27 21:42:22
collections.namedtuple()命名序列元素,增加代码可读性,支持所有元组操作,元素不可修改,只能通过_replace()方法修改元素 ......
## collections.namedtuple()命名序列元素
1 from collections import namedtuple 2 3 4 Student = namedtuple("Student", ['name', 'age', 'id']) # 返回一个名为Student的包含name, age, id 属性的类 5 stu1 = Student("Stanley", 22, '001') # 实例化 6 print(stu1) 7 # Student(name='Stanley', age=22, id='001') 8 print(stu1.name) 9 # Stanley 10 11 12 # namedtuple()创建的类的实例化对象支持所有普通元组操作,包括索引和解压,同样的,其元素不可修改 13 print(len(stu1)) 14 # 3 15 name, age, s_id = stu1 16 print(name) 17 # Stanley 18 19 stu1.name = "Lily" 20 # AttributeError: can't set attribute 21 22 23 # 如果要修改元素,可以使用_replace()方法 24 # 此方法并不是修改某个属性,而是和元组修改一样,整体指向了新的不同属性值的地址 25 26 stu1 = stu1._replace(name="Lily") 27 print(stu1.name) 28 # Lily 29 30 # 使用namedtuple命名序列元素相比于使用下标访问元素更加清晰,代码可读性更高 31 32 33 # 使用nametuple建立原型,设置默认值(初始值) 34 35 Student = namedtuple("Student", ['name', 'age', 'nationality']) 36 student_prototype = Student('', 0, 'China') # Student类的初始值 37 38 def update(s): 39 return student_prototype._replace(**s) 40 41 stu1 = {"name": "Stanley", "age": 22} 42 print(update(stu1)) 43 # Student(name='Stanley', age=22, nationality='China')
参考资料:
Python Cookbook, 3rd edition, by David Beazley and Brian K. Jones (O’Reilly).
下一篇: C#实现发送简单HTTP请求的方法
推荐阅读
-
collections.namedtuple()命名序列元素
-
search.taobao.com php数组函数序列之array_search- 按元素值返回键名
-
php数组函数序列之array_sum() - 计算数组元素值之和_PHP教程
-
php数组函数序列之array_unique() - 去除数组中重复的元素值_PHP教程
-
php数组函数序列之array_push() 数组尾部添加一个或多个元素(入_PHP
-
php数组函数序列之array_pop() - 删除数组中的最后一个元素_php技巧
-
php数组函数序列之array_push 数组尾部添加一个或多个元素(入栈),返回新长度。
-
php数组函数序列之rsort() - 对数组的元素值进行降序排序_PHP教程
-
jquery序列化表单去除指定元素示例代码
-
php数组函数序列之array_search()- 按元素值返回键名