Python - Magic Methods and Operator Overloading
What will be the output of this code?
class Dog:
def __repr__(self):
return 'Dog()'
d = Dog()
print(repr(d))