0

有了一个元素,你如何用 BeautifulSoup 清空它?

例如,我有一个 div(如下图),我需要做什么来清除它的内容?

mydiv = soup.find("div", { "id" : "TopMostInfoBlockContent" })
mydiv.?? #Something here to clear the div contents?
4

1 回答 1

1

使用.clear()方法

mydiv.clear()
于 2013-01-16T10:59:34.990 回答