帶格式寫入excel
from xlutils.copy import copy
import xlrd
import xlwt
tem_excel = xlrd.open_workbook('D:/日統計.xls', formatting_info=True)
tem_sheet = tem_excel.sheet_by_index(0)
new_excel = copy(tem_excel)
new_sheet = new_excel.get_sheet(0)
style = xlwt.XFStyle()
font = xlwt.Font()
font.name = '微軟雅黑'
font.bold = True
font.height = 360
style.font = font
borders = xlwt.Borders()
borders.top = xlwt.Borders.THIN
borders.bottom = xlwt.Borders.THIN
borders.left = xlwt.Borders.THIN
borders.right = xlwt.Borders.THIN
style.borders = borders
alignment = xlwt.Alignment()
alignment.horz = xlwt.Alignment.HORZ_CENTER
alignment.vert = xlwt.Alignment.VERT_CENTER
style.alignment = alignment
"""
new_sheet.write(2, 1, 12)
new_sheet.write(3, 1, 18)
new_sheet.write(4, 1, 19)
new_sheet.write(5, 1, 15)
"""
new_sheet.write(2, 1, 12, style)
new_sheet.write(3, 1, 18, style)
new_sheet.write(4, 1, 19, style)
new_sheet.write(5, 1, 15, style)
new_excel.save('D:/填寫.xls')
相關文章
- Python excel表格讀寫,格式化處理PythonExcel
- matplotlib 畫圖直接寫入excelExcel
- python excel 內容寫入mysqlPythonExcelMySql
- Excel 條件格式Excel
- Excel教程——excel如何使用條件格式Excel
- excel條件格式怎麼設定 excel條件格式在哪裡Excel
- 如何將 EXCEL 資料寫入資料庫Excel資料庫
- C# 將資料寫入到Excel表格C#Excel
- csv格式怎麼轉換成excel?csv格式轉換成excel格式檔案的方法Excel
- EXCEL破冰 - 鎖定單元格樣式和輸入格式Excel
- oracle 匯出excel 格式整改OracleExcel
- Excel表格轉Json格式ExcelJSON
- JAVA 資料寫入excel併傳送郵件JavaExcel
- 如何將excel表格匯入word並保持格式不變 如何把excel的表格弄到word文件Excel
- excel表格身份證如何調成正確格式 excel怎麼調身份證格式Excel
- UI登陸淘寶搜尋某物品並寫入excelUIExcel
- 透過 C# 將資料寫入到Excel表格C#Excel
- MySQL每秒57萬的寫入_帶你飛MySql
- Python匯入Excel表格資料並以字典dict格式儲存PythonExcel
- JAVA讀寫excelJavaExcel
- OleDb匯出標準格式EXCEL,Excel
- NOPI匯出標準格式ExcelExcel
- Excel-修改Excel中的00:00:00格式Excel
- Shell指令碼入門:編寫格式與執行方式指令碼
- EXCEL中日期格式轉換為文字格式-函式TEXTExcel函式
- excel檔案匯入(支援2003、2007格式)Excel
- python——將excel檔案寫入mysql資料庫中PythonExcelMySql資料庫
- 如何透過C++ 將資料寫入 Excel 工作表C++Excel
- Excel技巧提升:輕鬆玩轉格式Excel
- python 讀寫 excelPythonExcel
- AndroidJxl讀寫ExcelAndroidExcel
- Python讀寫ExcelPythonExcel
- excel生成單元格帶下拉選項的模板 + 資料匯入Excel
- Java實現將txt中的內容寫入到excel中JavaExcel
- Excel不夠用?Smartbi的Excel融合分析帶你飛Excel
- 【帶資訊的Excel模板下載】Excel
- Excel金額小寫轉大寫公式Excel公式
- maatwebsite/excel": "^3.1 匯入excel 問題WebExcel