摘要: import urllib.request url = "https://www.sogou.com/" response = urllib.request.urlopen(url) content = response.read().decode('utf-8') print(content) 阅读全文
posted @ 2020-12-13 22:51 gsy1121 阅读(77) 评论(0) 推荐(0)