摘要:
1. 将新闻的正文内容保存到文本文件。 1 2 3 4 def writeNewsDetail(content): f = open('gzccNews.txt', 'a',encoding='utf-8') f.write(content) f.close() 1 2 3 4 def writeN 阅读全文
摘要:
import requests from bs4 import BeautifulSoup from datetime import datetime url="http://news.gzcc.cn/html/xiaoyuanxinwen/" res=requests.get(url) res.e 阅读全文