Python dunder methods

23 Aug 2017

[ python  dunder  magic  overloading  ]

Here is a web page that provides an overview of Pythons Magic Methods and a tutorial on how to use them in a length conversion program.

Magic Methods and Operator Overloading

Here’s a related link: How can I overload the += operator in Python?

Both links discuss how to properly use the _radd_ method.