python 修改bug中出现
python报错:Exception Value:can only concatenate str (not "bytes") to str
一般原因,是bytes类型和str类型数据相加了
把str数据的encode()方法或者把bytes类型数据加上decode()方法
python 修改bug中出现
python报错:Exception Value:can only concatenate str (not "bytes") to str
一般原因,是bytes类型和str类型数据相加了
把str数据的encode()方法或者把bytes类型数据加上decode()方法