摘要: 1.urllib库基本使用 from urllib import request url = 'https://www.biedoul.com/index/21868/' resp = request.urlopen(url) print(resp.read().decode('utf-8')) 2 阅读全文
posted @ 2020-10-29 12:49 玉树Yshu 阅读(125) 评论(0) 推荐(0)