I am reading a excel file using python.
import pandas as pd
import os
xls = pd.ExcelFile('D:\DirectoryProject\Mapping.xlsx')
It has several number of data sheets which I don't know. How can I count the total number of sheets in Mapping.xlsx
file using Python?