0
>>> from lxml import html
>>> html.tostring(html.fromstring('<div>1</div><div>2</div>'))
'<div><div>1</div><div>2</div></div>' # I dont want to outer <div>
>>> html.tostring(html.fromstring('I am pure text'))
'<p>I am pure text</p>' # I dont need the extra <p>
を外側の要素ラップを避けますか?はlxmlの外側<code><div></code>と<code><p></code>を避けるために、どのようにlxmlので