使用 python 的 request 库请求对应的 url,并且保存到一个名为 a.html 的文件中
时间: 2024-02-27 07:56:52 浏览: 71
python requests 库请求带有文件参数的接口实例
好的,下面是对应的 Python 代码:
``` python
import requests
url = "这里填写你要请求的 URL"
response = requests.get(url)
with open("a.html", "w", encoding=response.encoding) as f:
f.write(response.text)
```
其中,你需要将代码中的 `url` 替换成你要请求的 URL。代码执行完毕后,会在当前目录下生成一个名为 `a.html` 的文件,其中保存了请求得到的 HTML 内容。
阅读全文