If a class defines the __str__(self) method, for an object obj for the class, you can use which command to invoke the __
Posted: Wed Jul 13, 2022 7:44 pm
a) obj.__str__()
b) str(obj)
c) print obj
d) all of the mentioned
b) str(obj)
c) print obj
d) all of the mentioned