TypeError: unsupported operand type(s) for +: 'int' and 'str'
时间: 2023-05-23 19:02:19 浏览: 56
浅析Python 3 字符串中的 STR 和 Bytes 有什么区别
这个错误出现是因为Python中整数类型和字符串类型不能直接相加,需要将其中一个转换成另一个类型来进行计算。您可以使用以下代码进行解决:
```
num = 10
string = "2"
result = str(num) + string
print(result)
```
输出结果将会是"102"。
阅读全文