获取span标签内容
时间: 2023-12-07 22:36:59 浏览: 115
获取网页指定标签内容
***签内容的方法:
```python
# 导入BeautifulSoup库
from bs4 import BeautifulSoup
# 假设html为包含span标签的html代码
html = '<span class="example">这是一个例子</span>'
# 将html代码转换为BeautifulSoup对象
soup = BeautifulSoup(html, 'html.parser')
# 使用find方法找到第一个span标签,并获取其内容
span_content = soup.find('span').text
# 输出span标签的内容
print(span_content) # 输出:这是一个例子
```
阅读全文