python-pandas获取excel表中每个sheet的名称

安装 pandas

首先确保安装了 pandas 和 openpyxl(用于处理 Excel 文件)

python 复制代码
pip install pandas openpyxl

import pandas as pd

加载 Excel 文件

python 复制代码
excel_file = pd.ExcelFile('your_excel_file.xlsx')

获取所有工作表的名称

python 复制代码
sheet_names = excel_file.sheet_names
print(sheet_names)
python 复制代码
['Sheet1', 'Sheet2', 'Sheet3']
相关推荐
二川bro10 小时前
量子计算入门:Python量子编程基础
python
夏天的味道٥11 小时前
@JsonIgnore对Date类型不生效
开发语言·python
tsumikistep11 小时前
【前后端】接口文档与导入
前端·后端·python·硬件架构
小白学大数据11 小时前
Python爬虫伪装策略:如何模拟浏览器正常访问JSP站点
java·开发语言·爬虫·python
江上月51312 小时前
Pandas 高级教程:解锁数据分析的强大潜能
数据挖掘·数据分析·pandas
头发还在的女程序员13 小时前
三天搞定招聘系统!附完整源码
开发语言·python
温轻舟13 小时前
Python自动办公工具06-设置Word文档中表格的格式
开发语言·python·word·自动化工具·温轻舟
花酒锄作田13 小时前
[python]FastAPI-Tracking ID 的设计
python·fastapi
AI-智能13 小时前
别啃文档了!3 分钟带小白跑完 Dify 全链路:从 0 到第一个 AI 工作流
人工智能·python·自然语言处理·llm·embedding·agent·rag
d***956214 小时前
爬虫自动化(DrissionPage)
爬虫·python·自动化