標籤:
實際工作中可能需要整理一些文檔,或者記錄一些資料,這時候使用python來操作Excel可能會幫得上你。
讀操作:
# encoding : utf-8 #設定編碼方式import xlrd #匯入xlrd模組#開啟指定檔案路徑的excel檔案xlsfile = r‘D:\AutoPlan\apisnew.xls‘ book = xlrd.open_workbook(xlsfile) #獲得excel的book對象#擷取sheet對象,方法有2種:sheet_name=book.sheet_names()[0] #獲得指定索引的sheet名字print sheet_namesheet1=book.sheet_by_name(sheet_name) #通過sheet名字來擷取,當然如果你知道sheet名字了可以直接指定sheet0=book.sheet_by_index(0) #通過sheet索引獲得sheet對象#擷取行數和列數:nrows = sheet.nrows #行總數ncols = sheet.ncols #列總數#獲得指定行、列的值,返回對象為一個值列表row_data = sheet.row_values(0) #獲得第1行的資料列表col_data = sheet.col_values(0) #獲得第一列的資料列表,然後就可以迭代裡面的資料了#通過cell的位置座標獲得指定cell的值cell_value1 = sheet.cell_value(0,1) ##只有cell的值內容,如:http://xxx.xxx.xxx.xxx:8850/2/photos/square/print cell_value1cell_value2 = sheet.cell(0,1) ##除了cell值內容外還有附加屬性,如:text:u‘http://xxx.xxx.xxx.xxx:8850/2/photos/square/‘print cell_value2
寫操作:
#encoding:utf-8 #設定編碼方式 import xlwtwbk = xlwt.Workbook(encoding=‘utf-8‘, style_compression=0)sheet = wbk.add_sheet(‘sheet 1‘, cell_overwrite_ok=True) ##第二參數用於確認同一個cell單元是否可以重設值。sheet.write(0,0,‘some text‘)sheet.write(0,0,‘this should overwrite‘) ##重新設定,需要cell_overwrite_ok=Truestyle = xlwt.XFStyle()font = xlwt.Font()font.name = ‘Times New Roman‘font.bold = Truestyle.font = fontsheet.write(0, 1, ‘some bold Times text‘, style)wbk.save(‘D:\TestData2.xls‘) ##該檔案名稱必須存在
剛開始學習,大家一起分享~代碼轉自http://blog.csdn.net/five3/article/details/7034826
官方資料:
:http://pypi.python.org/pypi/xlrd
官網地址:http://www.python-excel.org/
文檔地址:https://secure.simplistix.co.uk/svn/xlrd/trunk/xlrd/doc/xlrd.html
文檔pdf下載:http://www.simplistix.co.uk/presentations/python-excel.pdf
Excel的python讀寫