Python二元算术运算常用方法解析

在本文中,我想谈谈二元算术运算。具体来说,我想解读减法的工作原理:a - b。我故意选择了减法,因为它是不可交换的。这可以强调出操作顺序的重要性,与加法操作相比,你可能会在实现时误将 a 和 b 翻转,但还是得到相同的结果。

查看 C 代码

按照惯例,我们从查看 CPython 解释器编译的字节码开始。

>>> def sub(): a - b
...
>>> import dis
>>> dis.dis(sub)
 1      0 LOAD_GLOBAL       0 (a)
       2 LOAD_GLOBAL       1 (b)
       4 BINARY_SUBTRACT
       6 POP_TOP
       8 LOAD_CONST        0 (None)
       10 RETURN_VALUE

看起来我们需要深入研究 BINARY_SUBTRACT 操作码。翻查 Python/ceval.c 文件,可以看到实现该操作码的 C 代码如下:

case TARGET(BINARY_SUBTRACT): {
  PyObject *right = POP();
  PyObject *left = TOP();
  PyObject *diff = PyNumber_Subtract(left, right);
  Py_DECREF(right);
  Py_DECREF(left);
  SET_TOP(diff);
  if (diff == NULL)
  goto error;
  DISPATCH();
}

来源:https://github.com/python/cpython/blob/6f8c8320e9eac9bc7a7f653b43506e75916ce8e8/Python/ceval.c#L1569-L1579

这里的关键代码是PyNumber_Subtract(),实现了减法的实际语义。继续查看该函数的一些宏,可以找到binary_op1() 函数。它提供了一种管理二元操作的通用方法。

不过,我们不把它作为实现的参考,而是要用Python的数据模型,官方文档很好,清楚介绍了减法所使用的语义。

从数据模型中学习

通读数据模型的文档,你会发现在实现减法时,有两个方法起到了关键作用:__sub__ 和 __rsub__。

1、__sub__()方法

当执行a - b 时,会在 a 的类型中查找__sub__(),然后把 b 作为它的参数。这很像我写属性访问的文章 里的__getattribute__(),特殊/魔术方法是根据对象的类型来解析的,并不是出于性能目的而解析对象本身;在下面的示例代码中,我使用_mro_getattr() 表示此过程。

因此,如果已定义 __sub__(),则 type(a).__sub__(a,b) 会被用来作减法操作。(译注:魔术方法属于对象的类型,不属于对象)

这意味着在本质上,减法只是一个方法调用!你也可以将它理解成标准库中的 operator.sub() 函数。

我们将仿造该函数实现自己的模型,用 lhs 和 rhs 两个名称,分别表示 a-b 的左侧和右侧,以使示例代码更易于理解。

# 通过调用__sub__()实现减法
def sub(lhs: Any, rhs: Any, /) -> Any:
  """Implement the binary operation `a - b`."""
  lhs_type = type(lhs)
  try:
    subtract = _mro_getattr(lhs_type, "__sub__")
  except AttributeError:
    msg = f"unsupported operand type(s) for -: {lhs_type!r} and {type(rhs)!r}"
    raise TypeError(msg)
  else:
    return subtract(lhs, rhs)

2、让右侧使用__rsub__()

但是,如果 a 没有实现__sub__() 怎么办?如果 a 和 b 是不同的类型,那么我们会尝试调用 b 的 __rsub__()(__rsub__ 里面的“r”表示“右”,代表在操作符的右侧)。

当操作的双方是不同类型时,这样可以确保它们都有机会尝试使表达式生效。当它们相同时,我们假设__sub__() 就能够处理好。但是,即使两边的实现相同,你仍然要调用__rsub__(),以防其中一个对象是其它的(子)类。

3、不关心类型

现在,表达式双方都可以参与运算!但是,如果由于某种原因,某个对象的类型不支持减法怎么办(例如不支持 4 - “stuff”)?在这种情况下,__sub__ 或__rsub__ 能做的就是返回 NotImplemented。

这是给 Python 返回的信号,它应该继续执行下一个操作,尝试使代码正常运行。对于我们的代码,这意味着需要先检查方法的返回值,然后才能假定它起作用。

# 减法的实现,其中表达式的左侧和右侧均可参与运算
_MISSING = object() 

def sub(lhs: Any, rhs: Any, /) -> Any:
    # lhs.__sub__
    lhs_type = type(lhs)
    try:
      lhs_method = debuiltins._mro_getattr(lhs_type, "__sub__")
    except AttributeError:
      lhs_method = _MISSING 

    # lhs.__rsub__ (for knowing if rhs.__rub__ should be called first)
    try:
      lhs_rmethod = debuiltins._mro_getattr(lhs_type, "__rsub__")
    except AttributeError:
      lhs_rmethod = _MISSING 

    # rhs.__rsub__
    rhs_type = type(rhs)
    try:
      rhs_method = debuiltins._mro_getattr(rhs_type, "__rsub__")
    except AttributeError:
      rhs_method = _MISSING 

    call_lhs = lhs, lhs_method, rhs
    call_rhs = rhs, rhs_method, lhs 

    if lhs_type is not rhs_type:
      calls = call_lhs, call_rhs
    else:
      calls = (call_lhs,) 

    for first_obj, meth, second_obj in calls:
      if meth is _MISSING:
        continue
      value = meth(first_obj, second_obj)
      if value is not NotImplemented:
        return value
    else:
      raise TypeError(
        f"unsupported operand type(s) for -: {lhs_type!r} and {rhs_type!r}"
      )

4、子类优先于父类

如果你看一下__rsub__() 的文档,就会注意到一条注释。它说如果一个减法表达式的右侧是左侧的子类(真正的子类,同一类的不算),并且两个对象的__rsub__() 方法不同,则在调用__sub__() 之前会先调用__rsub__()。换句话说,如果 b 是 a 的子类,调用的顺序就会被颠倒。

这似乎是一个很奇怪的特例,但它背后是有原因的。当你创建一个子类时,这意味着你要在父类提供的操作上注入新的逻辑。这种逻辑不一定要加给父类,否则父类在对子类操作时,就很容易覆盖子类想要实现的操作。

具体来说,假设有一个名为 Spam 的类,当你执行 Spam() - Spam() 时,得到一个 LessSpam 的实例。接着你又创建了一个 Spam 的子类名为 Bacon,这样,当你用 Spam 去减 Bacon 时,你得到的是 VeggieSpam。

如果没有上述规则,Spam() - Bacon() 将得到 LessSpam,因为 Spam 不知道减掉 Bacon 应该得出 VeggieSpam。

但是,有了上述规则,就会得到预期的结果 VeggieSpam,因为 Bacon.__rsub__() 首先会在表达式中被调用(如果计算的是 Bacon() - Spam(),那么也会得到正确的结果,因为首先会调用 Bacon.__sub__(),因此,规则里才会说两个类的不同的方法需有区别,而不仅仅是一个由 issubclass() 判断出的子类。)

# Python中减法的完整实现
_MISSING = object() 

def sub(lhs: Any, rhs: Any, /) -> Any:
    # lhs.__sub__
    lhs_type = type(lhs)
    try:
      lhs_method = debuiltins._mro_getattr(lhs_type, "__sub__")
    except AttributeError:
      lhs_method = _MISSING 

    # lhs.__rsub__ (for knowing if rhs.__rub__ should be called first)
    try:
      lhs_rmethod = debuiltins._mro_getattr(lhs_type, "__rsub__")
    except AttributeError:
      lhs_rmethod = _MISSING 

    # rhs.__rsub__
    rhs_type = type(rhs)
    try:
      rhs_method = debuiltins._mro_getattr(rhs_type, "__rsub__")
    except AttributeError:
      rhs_method = _MISSING 

    call_lhs = lhs, lhs_method, rhs
    call_rhs = rhs, rhs_method, lhs 

    if (
      rhs_type is not _MISSING # Do we care?
      and rhs_type is not lhs_type # Could RHS be a subclass?
      and issubclass(rhs_type, lhs_type) # RHS is a subclass!
      and lhs_rmethod is not rhs_method # Is __r*__ actually different?
    ):
      calls = call_rhs, call_lhs
    elif lhs_type is not rhs_type:
      calls = call_lhs, call_rhs
    else:
      calls = (call_lhs,) 

    for first_obj, meth, second_obj in calls:
      if meth is _MISSING:
        continue
      value = meth(first_obj, second_obj)
      if value is not NotImplemented:
        return value
    else:
      raise TypeError(
        f"unsupported operand type(s) for -: {lhs_type!r} and {rhs_type!r}"
      )

推广到其它二元运算

解决掉了减法运算,那么其它二元运算又如何呢?好吧,事实证明它们的操作相同,只是碰巧使用了不同的特殊/魔术方法名称。

所以,如果我们可以推广这种方法,那么我们就可以实现 13 种操作的语义:+ 、-、*、@、/、//、%、**、<<、>>、&、^、和 |。

由于闭包和 Python 在对象自省上的灵活性,我们可以提炼出 operator 函数的创建。

# 一个创建闭包的函数,实现了二元运算的逻辑
_MISSING = object() 

def _create_binary_op(name: str, operator: str) -> Any:
  """Create a binary operation function. 

  The `name` parameter specifies the name of the special method used for the
  binary operation (e.g. `sub` for `__sub__`). The `operator` name is the
  token representing the binary operation (e.g. `-` for subtraction). 

  """ 

  lhs_method_name = f"__{name}__" 

  def binary_op(lhs: Any, rhs: Any, /) -> Any:
    """A closure implementing a binary operation in Python."""
    rhs_method_name = f"__r{name}__" 

    # lhs.__*__
    lhs_type = type(lhs)
    try:
      lhs_method = debuiltins._mro_getattr(lhs_type, lhs_method_name)
    except AttributeError:
      lhs_method = _MISSING 

    # lhs.__r*__ (for knowing if rhs.__r*__ should be called first)
    try:
      lhs_rmethod = debuiltins._mro_getattr(lhs_type, rhs_method_name)
    except AttributeError:
      lhs_rmethod = _MISSING 

    # rhs.__r*__
    rhs_type = type(rhs)
    try:
      rhs_method = debuiltins._mro_getattr(rhs_type, rhs_method_name)
    except AttributeError:
      rhs_method = _MISSING 

    call_lhs = lhs, lhs_method, rhs
    call_rhs = rhs, rhs_method, lhs 

    if (
      rhs_type is not _MISSING # Do we care?
      and rhs_type is not lhs_type # Could RHS be a subclass?
      and issubclass(rhs_type, lhs_type) # RHS is a subclass!
      and lhs_rmethod is not rhs_method # Is __r*__ actually different?
    ):
      calls = call_rhs, call_lhs
    elif lhs_type is not rhs_type:
      calls = call_lhs, call_rhs
    else:
      calls = (call_lhs,) 

    for first_obj, meth, second_obj in calls:
      if meth is _MISSING:
        continue
      value = meth(first_obj, second_obj)
      if value is not NotImplemented:
        return value
    else:
      exc = TypeError(
        f"unsupported operand type(s) for {operator}: {lhs_type!r} and {rhs_type!r}"
      )
      exc._binary_op = operator
      raise exc

有了这段代码,你可以将减法运算定义为 _create_binary_op(“sub”, “-”),然后根据需要重复定义出其它运算。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • python二元表达式用法

    二元表达式: wide=1 new_w = 299 if not wide else 28 print(new_w) new_w = 299 if wide>0 else 28 print(new_w) a,b=1,2 max = a if a > b else b 三元表达式 wide=0 new_w = 299 if wide>0 else 'sdf' if wide==0 else 28 print(new_w) 三目运算符: 这个是三目运算符(伪,因为Python根本就没有三目)

  • Python二元赋值实用技巧解析

    这篇文章主要介绍了Python二元赋值实用技巧解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 python支持类似于a += 3这种二元表达式.比如: a += 3 -> a = a + 3 a -= 3 -> a = a - 3 a *= 3 -> a = a * 3 ... 在python中的某些情况下,这种二元赋值表达式可能比普通的赋值方式效率更高些.原因有二: 二元赋值表达式中,a可能会是一个表达式,它只需计算评估一次,而a

  • 使用python绘制二元函数图像的实例

    废话少说,直接上代码: #coding:utf-8 import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D def function_2(x,y): # 这里的函数可以任意定义 return np.sum(x**2) fig = plt.figure() ax = Axes3D(fig) x = np.arange(-3,-3,0.1) y = np.arange(-3,

  • 利用python实现PSO算法优化二元函数

    python实现PSO算法优化二元函数,具体代码如下所示: import numpy as np import random import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D #----------------------PSO参数设置--------------------------------- class PSO(): def __init__(self,pN,dim,max_iter): #初

  • 基于Python编写一个计算器程序,实现简单的加减乘除和取余二元运算

    方法一: 结合lambda表达式.函数调用运算符.标准库函数对象.C++11标准新增的标准库function类型,编写一个简单的计算器,可实现简单的加.减.乘.除.取余二元运算.代码如下: #include "pch.h" #include <iostream> #include <functional> #include <map> #include <string> using namespace std; int add(int i

  • Python实现的拟合二元一次函数功能示例【基于scipy模块】

    本文实例讲述了Python实现的拟合二元一次函数功能.分享给大家供大家参考,具体如下: 背景: 使用scipy拟合一元二次函数. 参考: HYRY Studio-<用Python做科学计算> 代码: # -*- coding:utf-8 -*- #! python3 import numpy as np from scipy.optimize import leastsq import pylab as pl def func(x,p): """ 数组拟合函数 &

  • Python二元算术运算常用方法解析

    在本文中,我想谈谈二元算术运算.具体来说,我想解读减法的工作原理:a - b.我故意选择了减法,因为它是不可交换的.这可以强调出操作顺序的重要性,与加法操作相比,你可能会在实现时误将 a 和 b 翻转,但还是得到相同的结果. 查看 C 代码 按照惯例,我们从查看 CPython 解释器编译的字节码开始. >>> def sub(): a - b ... >>> import dis >>> dis.dis(sub) 1 0 LOAD_GLOBAL 0

  • Python hashlib加密模块常用方法解析

    这篇文章主要介绍了Python hashlib加密模块常用方法解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 主要用于对字符串的加密,最常用的为MD5加密: import hashlib def get_md5(data): obj = hashlib.md5() obj.update(data.encode('utf-8')) result = obj.hexdigest() return result val = get_md5('12

  • Python sys模块常用方法解析

    这篇文章主要介绍了Python sys模块常用方法解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 旨在记录 python sys 模块的常用方法 sys 模块常用方法及属性 sys.argv: 接收外部传递的参数. sys.exit([arg]): 程序退出,arg 为 0 正常退出. sys.getdefaultencoding(): 获取系统当前编码,一般默认为ascii. sys.setdefaultencoding(): 设置系统默

  • Python configparser模块常用方法解析

    ConfigParser模块在python中用来读取配置文件,配置文件的格式跟windows下的ini配置文件相似,可以包含一个或多个节(section), 每个节可以有多个参数(键=值).使用的配置文件的好处就是不用在程序员写死,可以使程序更灵活. 注意:在python 3 中ConfigParser模块名已更名为configparser configparser函数常用方法: 读取配置文件: read(filename) #读取配置文件,直接读取ini文件内容 sections() #获取i

  • Python多进程编程常用方法解析

    python中的多线程其实并不是真正的多线程,如果想要充分地使用多核CPU资源,在python中大部分情况需要使用多进程.python提供了非常好用的多进程包Multiprocessing,只需要定义一个函数,python会完成其它所有事情.借助这个包,可以轻松完成从单进程到并发执行的转换.multiprocessing支持子进程.通信和共享数据.执行不同形式的同步,提供了Process.Queue.Pipe.LocK等组件 一.Process 语法:Process([group[,target

  • Python timer定时器两种常用方法解析

    这篇文章主要介绍了Python timer定时器两种常用方法解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 方法一,使用线程中现成的: 这种一般比较常用,特别是在线程中的使用方法,下面是一个例子能够很清楚的说明它的具体使用方法: #! /usr/bin/python3 #! -*- conding: utf-8 -*- import threading import time def fun_timer(): print(time.strf

  • Python requests获取网页常用方法解析

    这篇文章主要介绍了Python requests获取网页常用方法解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 主要记录使用 requests 模块获取网页源码的方法 class Crawler(object): """ 采集类 """ def __init__(self, base_url): self._base_url = base_url self._cookie = None se

  • Python操作列表常用方法实例小结【创建、遍历、统计、切片等】

    本文实例讲述了Python操作列表常用方法.分享给大家供大家参考,具体如下: 使用for循环,遍历整个列表 依次从列表中取出元素,存放到names变量中,并拼接打印 names = ['杜子腾','杜小月','杜小星','杜小阳','杜小花'] for name in names: print("你好啊"+" "+name+" "+"我们交个朋友吧") 运行结果: 你好啊 杜子腾 我们交个朋友吧 你好啊 杜小月 我们交个朋友吧

  • Python面向对象编程基础解析(二)

    Python最近挺火呀,比鹿晗薛之谦还要火,当然是在程序员之间.下面我们看看有关Python的相关内容. 上一篇文章我们已经介绍了部分Python面向对象编程基础的知识,大家可以参阅:Python面向对象编程基础解析(一),接下来,我们看看另一篇. 封装 1.为什么要封装? 封装就是要把数据属性和方法的具体实现细节隐藏起来,只提供一个接口.封装可以不用关心对象是如何构建的,其实在面向对象中,封装其实是最考验水平的 2.封装包括数据的封装和函数的封装,数据的封装是为了保护隐私,函数的封装是为了隔离

随机推荐