📜  将excel文件导入python代码示例

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

代码示例1
import pandas as pd

df = pd.read_excel (r'Path where the Excel file is stored\File name.xlsx', sheet_name='your Excel sheet name')
print (df)