pythonprint(xpath)解析标签时TypeError: can only concatenate str (not "bytes") to str
时间: 2023-12-28 21:25:25 浏览: 71
解决Python中报错TypeError: must be str, not bytes问题
3星 · 编辑精心推荐
在解析标签时出现TypeError: can only concatenate str (not "bytes") to str的错误,可能是因为在代码中将字节类型的数据与字符串类型的数据进行了拼接。解决这个问题的方法是将字节类型的数据转换为字符串类型的数据。
以下是一个解决方案的示例代码:
```python
xpath = xpath.decode('utf-8') # 将字节类型的数据转换为字符串类型的数据
print(xpath)
```
这样就可以避免TypeError: can only concatenate str (not "bytes") to str的错误。
阅读全文