cannot concatenate 'str' and '
时间: 2023-04-26 08:05:00 浏览: 401
解决Python 异常TypeError: cannot concatenate 'str' and 'int' objects
bytes' objects
这个错误提示是因为在Python中,字符串(str)和字节(bytes)是两种不同的数据类型,不能直接拼接在一起。如果需要将字节转换为字符串,可以使用decode()方法,将字符串转换为字节则可以使用encode()方法。
阅读全文