python處理Excel常用到的模組是xlrd。使用xlrd可以非常方便的處理Excel文件,下面介紹一下基本用法
1.開啟檔案
import xlrd
data= xlrd.open_workbook("c:\\skills.xls")
獲取一個工作表
table = data.sheet_by_name(u'skills') #也可以
table = data.sheet_by_index(0)
行,列的獲取
table.row_values(i)
table.col_values(i)
行數,列數 等
nrows = table.nrows
ncols = table.ncols
單元格資料
cell_A1 = table.cell(0, 0).value
cell_C4 = table.cell(2, 3).value
#簡單寫單元格
table.put_cell(row, col, ctype, value, xf)
row = col = 0
ctype = 1 # 0 empty , 1 string, 2 number, 3 date, 4 bool, 5 error
value = 'this is cell value'
xf = 0
更多功能請參照官方文件
https://secure.simplistix.co.uk/svn/xlrd/trunk/xlrd/doc/xlrd.html?p=4966