Computer Science, asked by devankmhatte69, 4 months ago

What is the output of ? >>> a='65' >>> b=1 >>> a+b *
SyntaxError
NameError
IndexError
TypeError​

Answers

Answered by gaganadithyareddy9
1

Answer:

TypeError

Explanation:

TypeError because you cannot concatenate string with integer.

Answered by yashasrao
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