BeautifulSoup中使用什么获取某个元素显示?
发布网友
发布时间:2023-05-17 00:36
我来回答
共1个回答
热心网友
时间:2024-01-15 15:36
BeautifulSoup使用find()和find_all()函数来获取某个元素。 例如:
from bs4 import BeautifulSoup
html = 'HelloThis is some text.'
soup = BeautifulSoup(html, 'html.parser')
# 获取单个元素的内容
header = soup.find('h1')
print(header.text) # Hello
# 获取多个元素的内容
paragraphs = soup.find_all('p')
for p in paragraphs:
print(p.text) # This is some text.