We know how to read excel file using polar.
Import polars as pl
df = pl.read_excel()
In pandas we have capability to get all sheet names. Do we have such functionality in polars?
xl = pd.ExcelFile('file.xlsx')
# Get sheet names
sheet_names = xl.sheet_names