__truediv__

Dunder MethodPython 2.0+Advanced

Defines behavior for the / true division operator

Quick Info

Documentation
Official Docs
Python Version
2.0+

Learn by Difficulty

Quick Example

python
class Example:
    def __truediv__(self):
        return "Example __truediv__"

obj = Example()
print(obj)

__truediv__ defines behavior for the / true division operator. Implementing it lets you customize how Python interacts with your objects.

Try in Playground

Tags

oopmagic-methodprotocolcore