标签: python html lxml
我使用此函数来获取html doc的这一部分。
for el in doc.find_class('plusShippingText'): print el
我需要的是HTML代码。如何打印el的html代码?
由于
答案 0 :(得分:18)
使用lxml.html.tostring
lxml.html.tostring
print lxml.html.tostring(el)