摘要: import requests from bs4 import BeautifulSoup url='http://news.gzcc.cn/html/xiaoyuanxinwen/' res=requests.get(url) res.encoding='utf-8' soup=BeautifulSoup(res.text,'html.parser') for news in s... 阅读全文
posted @ 2017-09-28 16:00 杨小宏 阅读(144) 评论(0) 推荐(0) 编辑