python读写excel
时间: 2023-08-30 08:10:49 浏览: 79
python实现excel读写数据
5星 · 资源好评率100%
Python中有多种方式读写Excel文件,最常用的方式是使用第三方库`openpyxl`和`xlrd`。以下是一个简单的例子,演示如何使用这两个库读写Excel文件:
1. 使用`openpyxl`库读取Excel文件:
```python
import openpyxl
# 打开Excel文件
workbook = openpyxl.load_workbook('example.xlsx')
# 获取工作表
sheet = workbook.active
# 读取单元格
cell = sheet['A1']
print(cell.value)
# 读取一行
row = sheet[1]
for cell in row:
print(cell.value)
# 读取一列
column = sheet['A']
for cell in column:
print(cell.value)
# 保存Excel文件
workbook.save('example.xlsx')
```
2. 使用`xlrd`库读取Excel文件:
```python
import xlrd
# 打开Excel文件
workbook = xlrd.open_workbook('example.xlsx')
# 获取工作表
sheet = workbook.sheet_by_index(0)
# 读取单元格
cell = sheet.cell_value(0, 0)
print(cell)
# 读取一行
row = sheet.row_values(0)
for cell in row:
print(cell)
# 读取一列
column = sheet.col_values(0)
for cell in column:
print(cell)
# 保存Excel文件
# xlrd库只支持读取Excel文件,不支持写入,因此无法保存修改后的文件。
```
阅读全文