📜  python 如何读取 xlsx 文件 - Python 代码示例

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

代码示例1
import pandas as pd

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