Have the `__rdiv__()` and `__idiv__` operators changed in Python 3.x?

浪尽此生 提交于 2019-12-07 00:22:42

问题


In Python 3.x the __div__() operator was deprecated in favor of __floordiv__() and __truediv__().

Are the __rdiv__() and __idiv__() operators still used to refer to the reversed and in-place versions of __truediv__()? If so, what are the operator names for the reversed and in-place versions of __floordiv__()?


回答1:


__rdiv__ and __idiv__ no longer exist. The new names are the obvious choices of __rtruediv__, __itruediv__, __rfloordiv__, and __ifloordiv__, following the standard format. This is visible in the link in the second answer on the question you linked, or by doing dir(int) in a Python 3 interpreter.



来源:https://stackoverflow.com/questions/34344025/have-the-rdiv-and-idiv-operators-changed-in-python-3-x

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!