溫馨提示×

BeautifulSoup中怎么獲取字符串內(nèi)容

小億
151
2024-05-14 10:59:11
欄目: 編程語言

在BeautifulSoup中,要獲取標(biāo)簽內(nèi)的字符串內(nèi)容可以使用.string屬性或.get_text()方法來實現(xiàn)。例如:

from bs4 import BeautifulSoup

html = """
<html>
<body>
<p>這是一個段落</p>
</body>
</html>
"""

soup = BeautifulSoup(html, 'html.parser')
p_tag = soup.find('p')

# 使用.string屬性獲取字符串內(nèi)容
content = p_tag.string
print(content)

# 使用get_text()方法獲取字符串內(nèi)容
content = p_tag.get_text()
print(content)

以上代碼會輸出:

這是一個段落
這是一個段落

0