I have a *.xlsm file which has 20 sheets in it. I want to save few sheets as *.csv (formatting loss is fine) individually. Already tried xlrd-xlwt and win32com libraries b
import pandas as pd # YOU MUST PUT sheet_name=None df = pd.read_excel('YourFile.xlsm', sheet_name=None) # prints all sheets print(df)