python pandas 获取Excel文件下所有的sheet名称,表格数据

方法1:

一定要加sheet_name=None,才能读取出所有的sheet,否则默认读取第一个sheet,且获取到的keys是第一行的值

python 复制代码
df = pd.read_excel('自己的Excel文件路径.xlsx', sheet_name=None)  # 路径注意转义 
for i in df.keys():
   print(i)

方法2:

python 复制代码
    df = pd.read_excel('自己的Excel文件路径.xlsx', sheet_name=None)
    print(list(df))
相关推荐
步木木10 分钟前
Anaconda和Pycharm的区别,以及如何选择两者
ide·python·pycharm
星始流年12 分钟前
解决PyInstaller打包PySide6+QML应用的资源文件问题
python·llm·pyspider
南玖yy14 分钟前
Python网络爬虫:从入门到实践
爬虫·python
inxunoffice30 分钟前
批量将文本文件转换为 Word/PDF/Excel/图片等其它格式
pdf·word·excel
The Future is mine1 小时前
Python计算经纬度两点之间距离
开发语言·python
九月镇灵将1 小时前
GitPython库快速应用入门
git·python·gitpython
兔子的洋葱圈2 小时前
【django】1-2 django项目的请求处理流程(详细)
后端·python·django
独好紫罗兰2 小时前
洛谷题单3-P5719 【深基4.例3】分类平均-python-流程图重构
开发语言·python·算法
27669582922 小时前
美团民宿 mtgsig 小程序 mtgsig1.2 分析
java·python·小程序·美团·mtgsig·mtgsig1.2·美团民宿
橘子在努力2 小时前
【橘子大模型】关于PromptTemplate
python·ai·llama