gpt4 book ai didi

python - 提取元素并插入空格

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

我在 python 中使用 BeautifulSoup 解析 html

提取文本元素时不知道如何插入空格

这是代码:

import BeautifulSoup
soup=BeautifulSoup.BeautifulSoup('<html>this<b>is</b>example</html>')
print soup.text

那么输出就是

thisisexample

但我想像这样插入一个空格

yes is example

如何插入空格?

最佳答案

使用 getText 代替:

import BeautifulSoup
soup=BeautifulSoup.BeautifulSoup('<html>this<b>is</b>example</html>')

print soup.getText(separator=u' ')
# u'this is example'

关于python - 提取元素并插入空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6467043/

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