存储爬取结果
木下瞳
这个作者很懒,什么都没留下…
展开
-
xlwt库储存到Excel文件中
1.结构: 1)把爬取的每一组数据用列表或元组储存,然后再储存到收集所有数据的一个列表中 2) #创建表格 def creat_list(): header = ['name','author','type','condition','introduce',''] #定义表头 book = xlwt.Workbook(encoding = 'utf-8') #创建工作薄 ...原创 2018-08-02 17:09:07 · 460 阅读 · 0 评论 -
csv
文档:https://docs.python.org/3.4/library/csv.html 1.读取: 报编码错误:https://blog.csdn.net/yimixgg/article/details/80088809?utm_source=blogxgwz5 import csv fp = open('文件名',encoding = 'utf-8') reader = ...原创 2018-07-25 19:59:16 · 579 阅读 · 0 评论