Python的Excel操作需要另外下載安裝對應Python版本的xlrd和xlwt包,用於對Excel的讀取和寫入。 安裝方法:直接解壓後,在字元命令界面cd到setup.py的目錄,執行命令“Python setup.py install”即可。 xlrd(下麵有些是方法,有些是屬性,屬性後面不 ...
Python的Excel操作需要另外下載安裝對應Python版本的xlrd和xlwt包,用於對Excel的讀取和寫入。
安裝方法:直接解壓後,在字元命令界面cd到setup.py的目錄,執行命令“Python setup.py install”即可。
xlrd(下麵有些是方法,有些是屬性,屬性後面不加括弧)
1. excel = xlrd.open_workbook(excel_path):打開指定路徑的Excel文件,得到對應Excel的Excel對象(整個Excel文件的對象)。
2. excel_lst = excel.sheets:以列表的形式返回Excel對象中的sheet(Excel中單個sheet對象)。
3. excel_sheet = excel.sheet_by_name(sheet_name):根據sheet的名字獲取sheet對象。
4. excel_sheet = excel.sheet_by_index(sheet_index):根據sheet的索引(按照Excel中的sheet順序以0開始)獲取sheet對象。
5. excel_sheet.nrows:sheet中的有效行數。
6. excel_sheet.ncols:sheet中的有效列數。
7. excel_sheet.name:sheet的名稱。
8. excel_sheet.cell(row, col).value:獲取指定單元格的值。
9. excel_sheet.row_values(row):以列表的形式返回指定行的數據。
10. excel_sheet.col_values(col):以列表的形式返回指定列的數據。
11. excel_sheet.put_cell(row, col, type, value, xf):對單元格進行簡單的寫入(type為數字:0 empty, 1 string, 2 number, 3 date, 4 boolean, 5 error;xf=0:拓展的格式化)(本方法沒有試驗過,讀者可用時自行試驗)。
xlwt
1. excel = xlwt.Workbook(encoding='ascii'):新建一個Excel對象。
2. sheet = excel.add_sheet(sheet_name):新建一個sheet頁。
3. sheet.write(row, col, value, format):在單元格中寫入數據。
4. sheet.write_merge(start_row, start_col, end_row, end_col, value, format):合併單元格並寫入數據。
5. sheet.col(col).width:設置列寬。
6. sheet.row(row).height:設置行高。
7. xlwt.Formula('HYPERLINK("#%s!%s%s";"%s")' % (value, col, row, sheet_name)):設置超鏈接。
(這部分整體作為value傳入write等寫入方法中,其中的雙引號為Excel中的公式表示,不能用單引號或三引號;value為寫入單元格的值,sheet_name為鏈接的目的地址,col(1,2,3...)和row(A,B,C...)表示連接到sheet_name的單元格位置。)