📌  相关文章
📜  如何在 jupyter notebook 中读取 excel 文件 - Python 代码示例

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

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