I have a question in Python programming
Here is a small snippet of the program
class MyBool(int):
def __repr__(self):
return 'MyBool.' + ['False', 'True']
When I run this code I get the following
>>> MyBool(1)
Traceback (most recent call last):
File "<pyshell#6>", line 1, in <module>
MyBool(1)
File "C:\Python34\lib\idlelib\rpc.py", line 614, in displayhook
text = repr(value)
File "C:/Users/Saurabh/Desktop/MyBool.py", line 3, in __repr__
return 'MyBool.' + ['False', 'True']
TypeError: Can't convert 'list' object to str implicitly
>>>
The answer to the question is available in the PDF file https://www.assignmentexpert.com/https://www.assignmentexpert.com/homework-answers/programming-answer-47441.pdf
Comments
Leave a comment