1You do not directly call the str method Instead it is autom
1.You do not directly call the __str__ method. Instead, it is automatically called when you pass an object as an argument to the print function.
2. Starting an attribute name with two underscores will hide the attribute from code outside the class.
3. Mutator methods are sometimes called \"setters,\" and accessor methods are sometimes called \"getters\".
| True |
Solution
Answer 1) True
Passing an object as an argument to the print function automatically invokes the __str__() on the object. But, we can also directly call it, if we want.
Answer 2) True
Prefixing an attribute name with 2 underscores makes it a private variable to the class.
Answer 3) True
Mutators and accessors can set and fetch, respectively, the values of a variable.
Kindly let me know if you have any doubts on that!