Python类__div__问题 [英] Python Class __div__ issue

查看:320
本文介绍了Python类__div__问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

元组表示分数。我试图通过乘以乘法除以分数

The tuples represent fractions. I'm trying to divide the fractions by multiplying by the reciprical

class Test():
    def __init__(self):
        self._x=(1,2)
    def __div__(self,div_fraction):
        return (self._x[0]*div_fraction[1],self._x[1]*div_fraction[0])

y=Test()
z=y/(1,3)
print(z)

给我:

Traceback (most recent call last):
  File "E:/test.py", line 8, in <module>
   z=y/(1,3)
TypeError: unsupported operand type(s) for /: 'Test' and 'tuple'

然而,当我将 __ div __ 更改为 __ mul __ code> * 而不是 / 它做它应该。

Yet when I change the __div__ to __mul__ and use * instead of / it does what it should.

如何解决我遇到的异常?

How do I fix the exception I'm getting?

推荐答案

Python 3.x使用 __ truediv __ __ floordiv __ __ div __ 仅为2.x。

Python 3.x uses __truediv__ and __floordiv__. __div__ is 2.x-only.

这篇关于Python类__div__问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆