1. 程式人生 > >Creating Excel files with Python and XlsxWriter——Introduction

Creating Excel files with Python and XlsxWriter——Introduction

XlsxWriter 是用來寫Excel2007版本以上的xlsx檔案的Python模組。

XlsxWriter 在供選擇的可以寫Excel的Python模組中有自己的優缺點。

#---------------------------------------------------------------------------------------

優點:

       1. 它支援相比其他模組而言更多的Excel 特徵;

  2. 它生成的Excel檔案有很高的保真度,大多數情況下生成的檔案和Excel生成的檔案是完全一樣的;

  3. 它有眾多的檔案,例子和測試;

  4. 它執行速度很快,即使對於大的輸出檔案它也能只使用很少的記憶體;

#########################################################

缺點:

  它不能讀和修改已經存在的Excel xlsx檔案

##########################################################

XlsxWriter 是基於BSD License的方式授權,它的原始碼可以在GitHub找到。

在下一個章節Getting Started with XlsxWriter 中可以學著嘗試這個模組。