gpt4 book ai didi

python - 从已解析的 Beautiful Soup 列表中删除
标签?

转载 作者:太空狗 更新时间:2023-10-29 17:10:15 27 4
gpt4 key购买 nike

我目前正在进入一个包含我想要的所有行的 for 循环:

page = urllib2.urlopen(pageurl)
soup = BeautifulSoup(page)
tables = soup.find("td", "bodyTd")
for row in tables.findAll('tr'):

在这一点上,我有我的信息,但是

<br />

标签破坏了我的输出。

删除这些最干净的方法是什么?

最佳答案

for e in soup.findAll('br'):
e.extract()

关于python - 从已解析的 Beautiful Soup 列表中删除 <br> 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5925385/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com