typeerror: can't concat str to bytes
时间: 2023-04-26 22:03:07 浏览: 763
解决Python 异常TypeError: cannot concatenate 'str' and 'int' objects
这是一个类型错误,表示无法将字符串连接到字节。在 Python 3 中,字符串是以 Unicode 编码存储的,而字节是二进制数据。因此,在尝试将字符串与字节连接时,将出现此错误。要解决此问题,请确保将字符串编码为字节,或将字节解码为字符串。
阅读全文