在实战中学习
实战1(爬一个网页图片):
import urllib.request
response =urllib.request.urlopen(http://placekitten.com/g/500/600")
cat.img = response.read()
with open('cat_500_600.jpg',"wb") as f:
f.write(cat_img)
解读: