摘要: import urllib.request as urllib2 from bs4 import BeautifulSoup url='http://news.gzcc.cn/html/xiaoyuanxinwen/' request=urllib2.Request(url) response=urllib2.urlopen(request) bsObj=BeautifulSoup(respon... 阅读全文
posted @ 2017-09-27 14:24 学晖学习 阅读(193) 评论(0) 推荐(0) 编辑