📜  pd.read_excel 列数据类型 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:12.527000             🧑  作者: Mango

代码示例3
#You will need the package openpyxl to use the .read_excel function.
# pip install openpyxl
import pandas as pd
inFile = "Table.xlsx"
inSheetName = "Sheet1"
pd.read_excel(inFile, sheet_name = inSheetName)