python處理xlsx

來源:互聯網
上載者:User

一 讀取excel

 

這裡介紹一個不錯的包xlrs,可以工作在任何平台。這也就意味著你可以在Linux下讀取Excel檔案。


首先,開啟workbook;    

import xlrd

wb = xlrd.open_workbook('myworkbook.xls')


檢查表單名字:    

wb.sheet_names()


得到第一張表單,兩種方式:索引和名字    

sh = wb.sheet_by_index(0)

sh = wb.sheet_by_name(u'Sheet1')


遞迴列印出每行的資訊:    

for rownum in range(sh.nrows):

    print sh.row_values(rownum)


如果只想返回第一列資料:

first_column = sh.col_values(0)


通過索引讀取資料:    

cell_A1 =  sh.cell(0,0).value

cell_C4 = sh.cell(rowx=3,colx=2).value


注意:這裡的索引都是從0開始的。

 

二 寫excel 

這裡介紹一個不錯的包xlwt,可以工作在任何平台。這也就意味著你可以在Linux下儲存Excel檔案。

 

基本部分


在寫入Excel表格之前,你必須初始化workbook對象,然後添加一個workbook對象。比如:

import xlwt

wbk = xlwt.Workbook()

sheet = wbk.add_sheet('sheet 1')


這樣表單就被建立了,寫入資料也很簡單:

# indexing is zero based, row then column

sheet.write(0,1,'test text')


之後,就可以儲存檔案(這裡不需要想開啟檔案一樣需要close檔案):

wbk.save('test.xls')


深入探索


worksheet對象,當你更改表單內容的時候,會有警告提示。

sheet.write(0,0,'test')

sheet.write(0,0,'oops')

 

# returns error:

# Exception: Attempt to overwrite cell:

# sheetname=u'sheet 1' rowx=0 colx=0


解決方式:使用cell_overwrite_ok=True來建立worksheet:

sheet2 =  wbk.add_sheet('sheet 2', cell_overwrite_ok=True)

sheet2.write(0,0,'some text')

sheet2.write(0,0,'this should overwrite')


這樣你就可以更改表單2的內容了。


更多

# Initialize a style

style = xlwt.XFStyle()

 

# Create a font to use with the style

font = xlwt.Font()

font.name = 'Times New Roman'

font.bold = True

 

# Set the style's font to this new one you set up

style.font = font

 

# Use the style when writing

sheet.write(0, 0, 'some bold Times text', style)


xlwt 允許你每個格子或者整行地設定格式。還可以允許你添加連結以及公式。其實你可以閱讀原始碼,那裡有很多例子:


    dates.py, 展示如何設定不同的資料格式

    hyperlinks.py, 展示如何建立超連結 (hint: you need to use a formula)

    merged.py, 展示如何合并格子

    row_styles.py, 展示如何應用Style到整行格子中.

 

三 修改excel 

 

Python中一般使用xlrd(excel read)來讀取Excel檔案,使用xlwt(excel write)來產生Excel檔案(可以控制Excel中儲存格的格式),需要注意的是,用xlrd讀
取excel是不能對其進行操作的:xlrd.open_workbook()方法返回xlrd.Book類型,是唯讀,不能對其進行操作。而 xlwt.Workbook()返回的xlwt.Workbook類型的save(filepath)方法可以儲存excel檔案。

因此對於讀取和產生Excel檔案都非常容易處理,但是對於已經存在的Excel檔案進行修改就比較麻煩了。不過,還有一個xlutils(依賴於xlrd和xlwt)提供複製excel檔案內容和修改檔案的功能。其實際也只是在xlrd.Book和xlwt.Workbook之間建立了一個管道而已,如:

 

 

 

xlutils.copy模組的copy()方法實現了這個功能,範例程式碼如下:


from xlrd import open_workbook

from xlutils.copy import copy

 

rb = open_workbook('m:\\1.xls')

 

#通過sheet_by_index()擷取的sheet沒有write()方法

rs = rb.sheet_by_index(0)

 

wb = copy(rb)

 

#通過get_sheet()擷取的sheet有write()方法

ws = wb.get_sheet(0)

ws.write(0, 0, 'changed!')

 

wb.save('m:\\1.xls')

 

四 參考 

http://pypi.python.org/pypi/xlrdhttp://pypi.python.org/pypi/xlwthttp://pypi.python.org/pypi/xlutils

 

本文整合自 

http://www.leyond.info/write-excel-files-with-python-using-xlwt/http://www.leyond.info/read-excel-from-python-using-xlrs/http://www.zhlwish.com/2010/10/09/python_edit_excel/


 

完! 

感謝,Thanks!


作者:iTech

出處:http://itech.cnblogs.com/ 

本文著作權歸作者iTech所有,轉載請包含作者簽名和出處,不得用於商業用途,非則追究法律責任!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.