我可以使用BeautifulSoup删除脚本标签吗?
是否可以使用BeautifulSoup从HTML中删除脚本标签及其所有内容,还是必须使用正则表达式或其他内容?
回答:
>>> from bs4 import BeautifulSoup>>> soup = BeautifulSoup('<script>a</script>baba<script>b</script>', 'lxml')
>>> for s in soup.select('script'):
>>> s.extract()
>>> soup
baba
以上是 我可以使用BeautifulSoup删除脚本标签吗? 的全部内容, 来源链接: utcz.com/qa/399833.html