摘要: 1. 将新闻的正文内容保存到文本文件。 def save(content): f = open("content.txt", "a") f.write(content) f.close() 2. 将新闻数据结构化为字典的列表: 单条新闻的详情-->字典news 一个列表页所有单条新闻汇总-->列表n 阅读全文
posted @ 2018-04-17 20:00 207钟程泰 阅读(128) 评论(0) 推荐(0) 编辑