Python xlrd、xlwt、xlutils讀取、修改Excel文件
1、xlrd讀取excelpython
這裏介紹一個不錯的包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開始的。
2、xlwt寫excel oop
這裏介紹一個不錯的包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到整行格子中.
三 xlutils修改excel this
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之間創建了一個管道而已,以下圖:.net
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')
四 參考 excel
http://pypi.python.org/pypi/xlrd
http://pypi.python.org/pypi/xlwt
http://pypi.python.org/pypi/xlutils
文轉載自 https://blog.csdn.net/tianzhu123/article/details/7225809orm
備註:在查找相關資料時,發現這個哥們寫的很詳細,比我本身寫的那個更有深度,特此轉載備用對象