78excel的读写操作
Posted 布吉岛丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了78excel的读写操作相关的知识,希望对你有一定的参考价值。
本篇主要是用python来自动生成excel数据文件也就是简单的excel读写操作。python读写excel文件主要是第三方模块库xlrd、xlwt。
本篇导航:
1、准备工作
pip install xlwt
2、写excel
import xlwt wb = xlwt.Workbook() sheet = wb.add_sheet(\'sheet1\') for row in range(10): for col in range(5): sheet.write(row, col, \'第{0}行第{1}列\'.format(row, col)) wb.save(\'xxx.xls\')
3、结果图
1、准备工作
pip install xlrd
2、读excel
import xlrd # 打开excel文件 workbook = xlrd.open_workbook(\'xxx.xls\') # 抓取每页名称[\'sheet1\'] sheet_names = workbook.sheet_names() # sheet = workbook.sheet_by_name(\'sheet1\') # 通过索引顺序获取 sheet = workbook.sheet_by_index(0) # 循环Excel文件的所有行 for row in sheet.get_rows(): # 循环一行的所有列 for col in row: # # 获取一个单元格中的值 print(col.value)
3、结果图
以上是关于78excel的读写操作的主要内容,如果未能解决你的问题,请参考以下文章