python中find_all函数用法
时间: 2024-04-28 20:23:56 浏览: 170
find_all.py
在 Python 中,`find_all` 函数通常是指在 Beautiful Soup 库中用于查找 HTML 或 XML 文档中的所有指定标签的函数。`find_all` 函数的语法如下:
```python
find_all(name, attrs, recursive, string, limit, **kwargs)
```
其中,`name` 参数用于指定要查找的标签名称,`attrs` 参数用于指定要查找的标签属性,`recursive` 参数用于指定是否递归查找子标签,`string` 参数用于指定要查找的文本内容,`limit` 参数用于指定查找结果的数量限制。
下面是一个示例,演示如何使用 `find_all` 函数查找 HTML 文档中的所有链接标签:
```python
import requests
from bs4 import BeautifulSoup
# 发送 HTTP 请求,获取 HTML 文档
response = requests.get('http://www.example.com/')
html_doc = response.text
# 解析 HTML 文档
soup = BeautifulSoup(html_doc, 'html.parser')
# 查找所有链接标签
links = soup.find_all('a')
# 输出链接标签的 href 属性值
for link in links:
print(link.get('href'))
```
上述代码输出结果为:
```
http://www.iana.org/domains/example
```
这是一个包含一个字符串的列表,即链接标签的 `href` 属性值。
阅读全文