码迷,mamicode.com
首页 > 数据库 > 详细

第十八天:CSV、JSON、Excel、SQLite

时间:2019-09-16 23:56:22      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:header   int   with   value   ctr   json   print   数据   使用   

一、CSV文件

1、读取

  • reader = csv.reader(打开的file对象), reader为可迭代对象

2、用namedtuple映射列名

with open('apple.csv') as f:
    reader = csv.reader(f)
    headers = next(reader)  # 一般第一行是属性名
    Row = namedtuple('Row',headers)
    for r in reader:
        row = Row(*r)
        print(row)

3、读取到字典表

with open('a.csv') as f:
    reader = csv.DictReader(f)
    for row in reader:
        print(row)

二、JSON模块

  • json.dumps() 转换成json类型的字符串
  • json.loads() 从json字符串读取
  • json.dump(data,file) 写json文件
  • json.load(file) 读json文件
  • json中的false为None

    三、excel 模块

    使用xlrd模块

  • a = xlrd.open_workbook(file) 读取excel文件
  • for sheet in book.sheets(): 遍历文件中的工作簿
  • book.sheet_by_index() 按下标找工作簿
  • book.sheet_by_name() 按名称找工作簿
  • sheet.name 工作簿名
  • sheet.nrows 数据行数
  • sheet.row_values(index) 获取索引指定的数据行

第十八天:CSV、JSON、Excel、SQLite

标签:header   int   with   value   ctr   json   print   数据   使用   

原文地址:https://www.cnblogs.com/linyk/p/11530342.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!