How to extract sheet from *.xlsm and save it as *.csv in Python?
问题 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 but could not get through. Can anybody please provide a code snippet which does the above processing in Python? I have other python dependencies so no other language would work. Thanks 回答1: xlrd should work fine on xlsm files as well. I tested the code with a random xlsm file, and it worked perfectly. import csv import xlrd