python删除html文本及子节点_利用BeautifulSoup删除/去除HTML指定标签和去除注释
PageElement.extract() 方法将当前tag移除文档树,并作为方法结果返回:去除指定标签frombs4importBeautifulSoup#去除属性ul[s.extract()forsinsoup("ul")]#去除属性svg[s.extract()forsinsoup("svg")]#去除属性script[s.extract()forsinso...