写一个python代码,读取excel表格
时间: 2023-06-05 12:06:02 浏览: 100
python读取excel表格
很高兴为您服务!下面是读取excel表格的Python代码示例:
```python
import xlrd
# 打开excel文件
workbook = xlrd.open_workbook('example.xlsx')
# 获取所有的sheet
sheets = workbook.sheet_names()
# 遍历每个sheet并读取数据
for sheet_name in sheets:
sheet = workbook.sheet_by_name(sheet_name)
rows = sheet.nrows
cols = sheet.ncols
for row in range(rows):
for col in range(cols):
cell_value = sheet.cell(row, col).value
print(cell_value, end='\t')
print()
```
您只需要将代码中的`example.xlsx`替换成您自己的Excel文件路径即可。如果您还有其他问题需要解答,请随时提出。
阅读全文