爬虫:下载一只猫 有一个问题求助
https://s1.ax1x.com/2020/07/16/UDA0VU.pnghttps://s1.ax1x.com/2020/07/16/UDEkLV.png
请问,我的代码哪里出问题了?
你转 bs4 对象干嘛用的,直接这样就好了:
import requests
res = requests.get('http://placekitten.com/200/300')
cat_img = res.content
with open('cat.jpg','wb') as f:
f.write(cat_img) Twilight6 发表于 2020-7-16 15:31
你转 bs4 对象干嘛用的,直接这样就好了:
好的 ,谢谢大佬,有点学懵了。。 Twilight6 发表于 2020-7-16 15:31
你转 bs4 对象干嘛用的,直接这样就好了:
你是真勤劳哇..
页:
[1]