本篇主要是用python来自动生成excel数据文件也就是简单的excel读写操作。python读写excel文件主要是第三方模块库xlrd、xlwt。
本篇导航:
- 写excel
- 读excel
一、写excel
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、结果图
二、读excel
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、结果图
原文地址:https://www.cnblogs.com/liluning/p/8178062.html
时间: 2025-01-13 08:27:52