Is this example for explaining rtruediv ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is this example for explaining rtruediv ?

In anyway to interpret it seems trudiv method is working well.

4th Sep 2018, 1:23 AM
Kim MinKwan
Kim MinKwan - avatar
2 Answers
0
I just added an exception: When the left side does not have an action (it fails) Python tries the right side. This could be used for interesting responses to input / data files / types without needing a try...catch. the exception here is () /x Tuple does not know how to divide itself by 5 (x's integer value) so it asks x to handle it.
4th Sep 2018, 5:51 AM
Kirk Schafer
Kirk Schafer - avatar
+ 3
I'm not 100% sure what you are asking, so I asked a question of myself: "why would I use rtruediv?" Here's a code that produces a custom integer division (how many balls do you get?) if a special type of integer is on the right hand side https://code.sololearn.com/ceY9R1IZuGKr/?ref=app There is an explanation of how __rtruediv is activated on StackOverflow: https://stackoverflow.com/questions/37310077/JUMP_LINK__&&__python__&&__JUMP_LINK-rtruediv-does-not-work-as-i-expect Basically, the right-hand side must be a *subclass* of the left-hand side for this to work.
4th Sep 2018, 2:44 AM
Kirk Schafer
Kirk Schafer - avatar