does xlwt support xlsx Format

后端 未结 3 1498
情歌与酒
情歌与酒 2020-12-09 16:25

I have searched into google and found some contradiction. Does xlwt support xlsx file (MS office 2007). I heard that xlwt 0.7.4 support xlsx file. Does anyone tried xlsx fil

3条回答
  •  一整个雨季
    2020-12-09 17:26

    The xlwt module doesn't support the xlsx format. The xlsx file format is completely different from the xls format supported by xlwt.

    As an alternative have a look at XlsxWriter which is a Python module for creating xlsx files.

    It supports a lot of Excel features. Have a look at the documentation or start with the examples.

提交回复
热议问题