摘要: 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 soup.... 阅读全文
posted @ 2018-04-02 21:02 104陈颖楠 阅读(145) 评论(0) 推荐(0) 编辑