lxml提取html标签内容, tostring()不能显示中文
2019-04-28 本文已影响0人
modingfa
from lxml import etree
import requests
response = requests.get('https://www.baisu.com/).text
tree = etree.HTML(response)
strs = tree.xpath( "//body")
strs = strs[0]
strs = (etree.tostring(strs)) ########### 不能正常显示中文################
strs = (etree.tostring(strs, encoding = "utf-8", pretty_print = True, method = "html")) # 可以正常显
示中文
print (strs)