python爬取网页源代码?,最后出现的却是下面的编码,有人知道这是什么吗?该怎样解决?谢谢!

2025-04-05 19:44:28
推荐回答(2个)
回答1:

htmlStr = html.text
htmlStr.encode('latin-1').decode('unicode_escape')  # 转码

回答2:

print(html.text.encode('utf-8'))