Python Forum
Magic Method Arithmetic Operators
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Magic Method Arithmetic Operators
#2
ClownPrinceOfCrime Wrote:for some reason the indentations dont show, so please ignore that
We will certainly not ignore that. Instead, you will read the BBCode help page to learn how to make the indentation show.

About the issue, how would you invoke your extended __add__ operator? If you write
obj + other + something_else
in the code, it will call
obj.__add__(other).__add__(something_else)
and not
obj.__add__(other, something_else)
buran likes this post
Reply


Messages In This Thread
RE: Magic Method Arithmetic Operators - by Gribouillis - Jan-10-2021, 10:27 AM
RE: Magic Method Arithmetic Operators - by buran - Jan-10-2021, 11:09 AM
RE: Magic Method Arithmetic Operators - by ndc85430 - Jan-10-2021, 03:24 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Use of if - and operators Pedro_Castillo 1 1,182 Oct-24-2023, 08:33 AM
Last Post: deanhystad
  Mixing Boolean and comparison operators Mark17 3 2,836 Jul-11-2022, 02:20 AM
Last Post: perfringo
  magic related field in Django model sonh 1 2,039 Apr-24-2022, 12:37 PM
Last Post: sonh
  Evaluating arithmetic expression with recursion. muddybucket 3 4,366 Dec-17-2021, 08:31 AM
Last Post: deanhystad
  Simple arithmetic question ebolisa 5 3,317 Dec-15-2021, 04:56 PM
Last Post: deanhystad
  Need a little help with numpy array magic. pmf71 0 1,801 Dec-01-2021, 02:51 AM
Last Post: pmf71
  Class and Operators in Python rsherry8 1 2,685 May-27-2020, 07:09 PM
Last Post: buran
  Trying Comparison Operators PythonGainz 3 3,636 Mar-28-2020, 10:46 AM
Last Post: PythonGainz
  Mathematical Operators in String AgileAVS 1 3,053 Mar-04-2020, 04:14 PM
Last Post: Gribouillis
  A doubt with 'in' and 'not in' operators with strings newbieAuggie2019 7 5,957 Oct-23-2019, 03:11 PM
Last Post: perfringo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020