python读取excel文件
时间: 2023-06-21 22:15:24 浏览: 48
python直接读取网页excel文件(无需下载)(csdn)————程序.pdf
可以使用Python中的xlrd模块来读取Excel文件。下面是使用xlrd模块读取Excel文件的示例代码:
```python
import xlrd
# 打开Excel文件
workbook = xlrd.open_workbook('example.xlsx')
# 获取所有sheet
sheets = workbook.sheets()
# 获取第一个sheet的名称
first_sheet_name = sheets[0].name
# 获取第一个sheet的所有行和列
rows = sheets[0].nrows
cols = sheets[0].ncols
# 遍历所有行和列
for row in range(rows):
for col in range(cols):
print(sheets[0].cell(row, col).value)
```
以上代码中,example.xlsx是要读取的Excel文件的名称。然后使用xlrd.open_workbook()方法打开Excel文件,获取所有的sheet。接着可以通过sheets[0].name获取第一个sheet的名称,sheets[0].nrows和sheets[0].ncols获取第一个sheet的行数和列数。最后使用sheets[0].cell(row, col).value来访问每一个单元格的值。
阅读全文