TypeError: can only concatenate str (not "int") to str 如何解决
时间: 2023-11-21 12:09:52 浏览: 48
解决Python 异常TypeError: cannot concatenate 'str' and 'int' objects
这个错误提示是因为你尝试将一个字符串和一个整数进行字符串拼接操作,而 Python 不支持直接将字符串和整数进行拼接。解决方法是将整数转换为字符串,然后再进行字符串拼接。
例如,如果你想要将一个字符串和一个整数拼接起来,可以使用 str() 函数将整数转换为字符串,然后再进行拼接操作,例如:
```
a = "hello"
b = 123
c = a + str(b)
print(c)
```
输出结果为:
```
hello123
```
另外,如果你使用 f-string 或者 .format() 方法进行字符串格式化操作,也可以将整数转换为字符串,例如:
```
a = "hello"
b = 123
c = f"{a}{str(b)}"
print(c)
```
输出结果为:
```
hello123
```
阅读全文