摘要: import requests from bs4 import BeautifulSoup a=requests.get('http://news.gzcc.cn/html/xiaoyuanxinwen/') a.encoding='utf-8' soup=BeautifulSoup(a.text,'html.parser') for xinwen in soup.select('li'):... 阅读全文
posted @ 2017-10-12 20:25 刘己铉 阅读(120) 评论(0) 推荐(0) 编辑