2018年3月29日
摘要: import requests from bs4 import BeautifulSoup url="http://www.gzcc.cn/html/xygk/xrld/" res = requests.get(url) res.encoding="utf-8" soup = BeautifulSoup(res.text,"html.parser") h1 = soup.h1 a = soup... 阅读全文
posted @ 2018-03-29 17:53 121林伟聪 阅读(117) 评论(0) 推荐(0) 编辑