知行编程网知行编程网  2022-12-28 11:30 知行编程网 隐藏边栏  5 
文章评分 0 次,平均分 0.0
导语: 本文主要介绍了关于python dict实现的魔法方法的相关知识,希望可以帮到处于编程学习途中的小伙伴

python dict实现的魔术方法


方法说明

1. __or__ 和 __ror__ 魔术方法对应于 |运算符,__or__表示对象在运算符的左边,__ror__表示对象在运算符的右边。实现是根据左边的操作数生成一个新的字典,然后把右边的操作数更新到新字典,然后返回新字典。

2、__ior__魔术方法对应|=运算符,右边的运算次数可以自行更新。


实例

def __or__(self, other):
    if not isinstance(other, dict):
        return NotImplemented
    new = dict(self)
    new.update(other)
    return new
 
def __ror__(self, other):
    if not isinstance(other, dict):
        return NotImplemented
    new = dict(other)
    new.update(self)
    return new
 
def __ior__(self, other):
    dict.update(self, other)
    return self


本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

本文为原创文章,版权归所有,欢迎分享本文,转载请保留出处!

知行编程网
知行编程网 关注:1    粉丝:1
这个人很懒,什么都没写
扫一扫二维码分享