摘要: #!/usr/bin/env python # -*- coding:utf-8 -*- from urllib import request f = request.urlopen('http://www.baidu.com/') result = f.read().decode('utf-8') print(result) 阅读全文
posted @ 2017-05-17 09:48 极客易先生 阅读(626) 评论(0) 推荐(0) 编辑