[Python] Python3 爬虫下载指定页面图片

Python3.X #coding=utf8 import re import urllib.request def getHtml(url): page = urllib.request.urlopen(url) html = page.read().decode('latin-1').encode('utf-8').decode('utf-8') #html =
相关文章
相关标签/搜索