摘要: import requests from bs4 import BeautifulSoup newsurl='http://news.gzcc.cn/html/xiaoyuanxinwen/' res = requests.get(newsurl) res.encoding='utf-8' soup = BeautifulSoup(res.text,'html.parser') h1=soup... 阅读全文
posted @ 2018-03-29 13:49 130-张煌 阅读(156) 评论(0) 推荐(0) 编辑