TypeError: can only concatenate str (not "int") to str TypeError: can only concatenate str (not "int") to str
时间: 2023-08-14 22:07:01 浏览: 188
浅析Python 3 字符串中的 STR 和 Bytes 有什么区别
这个错误提示表明你在尝试将一个整数类型的值与一个字符串类型的值进行连接(concatenation)操作。在 python 中,字符串类型和整数类型不能直接进行连接操作,需要先将整数转换为字符串类型才能进行连接。
You could try, for example converting int to str before concatenate, with str(your_int)
阅读全文