Q. Which function is called when the following Python program is executed?
Code:
f = foo() format(f)
β
Correct Answer: (C)
__str__()
f = foo() format(f)
You must be Logged in to update hint/solution