Search code examples
pythonexcelpython-2.7xlwt

how to do excel's 'format as table' in python


I'm using xlwt to create tables in excel. In excel there is a feature format as table which makes the table have an automatic filters for each column. Is there a way to do it using python?


Solution

  • OK, after searching the web, I realized that with xlwt it's not possible to do it, but with XlsxWriter it's possible and very easy and convenient.