Computer Science, asked by hrahmanFatima4668, 4 months ago

Why is giving error print('10'+20)

Answers

Answered by heyParam
0

Answer:

It is giving error because you are adding '10' (string) with 20 (integer). That is not possible.

Answered by tyagicoolboy22
0

Answer:

because you can concatenate only string but you are trying to concatenate string with integer that is not possible in python.

Explanation:

Similar questions