gpt4 book ai didi

python - BeautifulSoup:将内容 [] 作为单个字符串获取

转载 作者:IT老高 更新时间:2023-10-28 21:00:12 24 4
gpt4 key购买 nike

任何人都知道将汤对象的全部内容作为单个字符串获取的优雅方法吗?

目前我正在获取 contents,这当然是一个列表,然后对其进行迭代:

notices = soup.find("div", {"class" : "middlecontent"})
con = ""
for content in notices.contents:
con += str(content)
print con

谢谢!

最佳答案

contents = str(notices) 怎么样?

或者可能是 contents = notices.renderContents(),这会隐藏 div 标签。

关于python - BeautifulSoup:将内容 [] 作为单个字符串获取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4488836/

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