Path: blob/master/Excel/Excel_List_sheets_in_workbook.ipynb
2972 views
Kernel: Python 3
Excel - List sheets in workbook
Tags: #excel #list #sheets #workbook #data #analysis
Author: Florent Ravenel
Last update: 2023-04-12 (Created: 2023-03-29)
Description: This notebook will list the sheet's name in an Excel workbook.
References:
Input
Import libraries
In [ ]:
Setup Variables
file_path
: path of the Excel workbooksheets
: list of sheets in Excel workbook
In [ ]:
Model
List sheets in workbook
The load_workbook function loads the workbook into memory, and sheetnames property returns a list of sheet names in the workbook. Finally, we loop over the sheet names and print them out.
In [ ]:
Output
Display result
In [ ]: