成功解决TypeError: sequence item 0: expected str instance, bytes found
目录
解决问题
TypeError: sequence item 0: expected str instance, bytes found
解决思路
类型错误:序列项0:应为str实例,找到个字节
解决方法
说明没有读取到,将读入到的字符串转为字节即可!
("".join(data)) 改为字符串读入
2024-01-07 22:19:16
成功解决TypeError: sequence item 0: expected str instance, bytes found
目录
TypeError: sequence item 0: expected str instance, bytes found
类型错误:序列项0:应为str实例,找到个字节
说明没有读取到,将读入到的字符串转为字节即可!
("".join(data)) 改为字符串读入