python 中是否有一些函数可以将 element.text 与相同的 Element.tag 名称连接起来?
例子:
p>
some text
<i>(</i>
<i>something</i>
<i>something</i>
<i>)</i>
some text
<i>proň, zač</i>
the end of paragraph
</p>
我想要的是:
p>
some text
<i>(something something)</i>
some text
<i>proň, zač</i>
the end of paragraph
</p>