Let A and B be objects of class Foo. Which functions are called when print(A + B) is executed?
Let A and B be objects of class Foo. Which functions are called when print(A + B) is executed? Correct Answer __add__(), __str__()
The function __add__() is called first since it is within the bracket. The function __str__() is then called on the object that we received after adding A and B.
মোঃ আরিফুল ইসলাম
Feb 20, 2025