What Will Be The Output Of The Following Python Codep Pre #1087
What will be the output of the following Python code?</p> <pre><code class="language-python"> >>> class demo(): def __repr__(self): return '__repr__ built-in function called' def __str__(self): return '__str__ built-in function called' >>> s=demo() >>> print(s) </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Classes and Objects - Python Classes and Objects - Quiz No.2.
What will be the output of the following Python code?
>>> class demo(): def __repr__(self): return '__repr__ built-in function called' def __str__(self): return '__str__ built-in function called' >>> s=demo() >>> print(s)
Error
Nothing is printed
__str__ called
__repr__ called