📜  python pandas read_excel - Python 代码示例

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

代码示例4
#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)