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

ⅰ亾dé卋堺 提交于 2019-12-05 04:16:00

__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.

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