【说站】python字典合并有哪些规范?
2024-11-14
4
python字典合并有哪些规范?
1、字典合并返回新字典,该字典由左操作数和右操作数合并,各操作数必须为dict(或dict子类实例)。如果两个操作数中有一个键,最后出现的值(即从右侧操作数的值)将被覆盖。
>>> d = {'spam': 1, 'eggs': 2, 'cheese': 3} >>> e = {'cheese': 'cheddar', 'aardvark': 'Ethel'} >>> d | e {'spam': 1, 'eggs': 2, 'cheese': 'cheddar', 'aardvark': 'Ethel'} >>> e | d # 不符合交换律,左右互换操作数会得到不同的结果 {'aardvark': 'Ethel', 'spam': 1, 'eggs': 2, 'cheese': 3}
2、扩展赋值的行为与字典的update方法完全相同,支持实现映射协议(更准确地实现keys和__getitem_方法)或重复对象。
>>> d | [('spam', 999)] # “原理”章节中提到限制操作数的类型,不是字典或字典子类就报错 Traceback (most recent call last): ... TypeError: can only merge dict (not "list") to dict >>> d |= [('spam', 999)] # “原理”章节中提到允许就地运算符接受更广泛的类型,其行为和 update 一样,接受键值对迭代对象 >>> d {'eggs': 2, 'cheese': 'cheddar', 'aardvark': 'Ethel', 'spam': 999}
以上就是python字典合并的规范,希望对大家有所帮助。更多编程基础知识学习:python学习网
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:14小时前赞一波!
相关文章
- 【说站】python如何读取大文件
- 【说站】python字典合并特性是什么
- 【说站】python Faust流处理库的介绍
- 【说站】python如何建立web服务
- 【说站】python int返回的方法探究
- 【说站】Python中GC算法是什么
- 【说站】python逻辑值检测如何实现
- 【说站】java中Lombok有哪些注解
- 【说站】python indent如何打印JSON数据
- 【说站】java通配符有哪些
- 【说站】python如何追写内容
- 【说站】python的浮点数占多少个字节
- 【说站】python反向输出数字
- 【说站】python中__file__属性的使用
- 【说站】python输入三个数求平均值
- 【说站】python提取字符串指定内容
- 【说站】python将数字转化为汉字
- 【说站】python快捷键
- 【说站】python交换两个变量的值
- 【说站】python截取字符串中特定部分
文章评论
评论问答