What is the output of ? >>> a='65' >>> b=1 >>> a+b *
SyntaxError
NameError
IndexError
TypeError
Answers
Answered by
1
Answer:
TypeError
Explanation:
TypeError because you cannot concatenate string with integer.
Answered by
0
TYPE ERROR
A string cannot be added with a non-string (integer in this case). When added, type error will be displayed.
Similar questions