pycharm导入excel
时间: 2023-11-06 07:52:09 浏览: 242
基于Pycharm的Excel文件导入以及数据处理
在PyCharm中导入Excel可以使用pandas库的read_excel()方法。首先,需要导入pandas库,并指定别名为pd。然后使用read_excel()方法来读取Excel表格。例如,可以使用以下代码来导入Excel表格:
```
import pandas as pd
fm = pd.read_excel(r"D:\杂货\编码数据.xlsx", sheet_name="Sheet1")
print(fm)
```
另一种方法是使用xlrd库来导入Excel表格。首先,需要导入xlrd库。然后,使用open_workbook()方法打开Excel文件。再使用sheet_by_name()方法打开表单。最后,使用for循环遍历行和列,并将单元格的值添加到列表中。以下是使用xlrd库导入Excel表格的示例代码:
```
import xlrd
file = 'D:/杂货/编码数据.xlsx'
wb = xlrd.open_workbook(filename=file)
ws = wb.sheet_by_name("Sheet1")
dataset = []
for r in range(ws.nrows):
col = []
for l in range(ws.ncols):
col.append(ws.cell(r, l).value)
dataset.append(col)
from pprint import pprint
pprint(dataset)
```
阅读全文