typeerror: can only concatenate str (not "int") to str
时间: 2023-04-28 07:06:22 浏览: 106
解决Python 异常TypeError: cannot concatenate str and int objects
3星 · 编辑精心推荐
这个错误提示表明你在尝试将一个整数类型的值与一个字符串类型的值进行连接(concatenation)操作。在 python 中,字符串类型和整数类型不能直接进行连接操作,需要先将整数转换为字符串类型才能进行连接。
You could try, for example converting int to str before concatenate, with str(your_int)
阅读全文