帮我用python编写一段图片下载代码
时间: 2024-03-11 08:34:58 浏览: 60
以下是一个简单的Python程序,可以使用requests库来下载图片:
```python
import requests
url = "https://example.com/image.jpg"
filename = "image.jpg"
response = requests.get(url)
with open(filename, "wb") as f:
f.write(response.content)
```
将上面的代码保存为一个.py文件,然后将url和filename替换为你想要下载的图片的URL和文件名,最后运行该程序即可下载图片。
阅读全文