📜  在 python 中读取 excel 文件 - 任何代码示例

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

代码示例6
import pandas as pd

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