91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python基于win32com客戶端怎么實現Excel操作

發布時間:2023-05-04 09:58:29 來源:億速云 閱讀:122 作者:zzz 欄目:開發技術

本篇內容介紹了“Python基于win32com客戶端怎么實現Excel操作”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

    測試環境

    Python 3.6.2

    代碼實現

    非多線程場景下使用

    新建并保存EXCEL

    import win32com.client
    from win32api import RGB
    def save_something_to_excel(result_file_path):
        excel_app = win32com.client.Dispatch('Excel.Application')
        excel_app.Visible = False  # 設置進程界面是否可見 False表示后臺運行
        excel_app.DisplayAlerts = False # 設置是否顯示警告和消息框
        book = excel_app.Workbooks.Add() # 添加Excel工作簿
        sheet = excel_app.Worksheets(1)  # 獲取第一個Sheet
        sheet.name = '匯總統計' # 設置Sheet名稱
        sheet.Columns.ColumnWidth = 10  # 設置所有列列寬
        sheet.Columns(1).ColumnWidth = 20 # 設置第1列列寬
        sheet.Rows.RowHeight = 15 # 設置所有行高
        sheet.Rows(1).RowHeight = 20  # 設置第一行行高
        usedRange = sheet.UsedRange  # 獲取sheet的已使用范圍
        rows = usedRange.Rows.Count  # 獲取已使用范圍的最大行數,初始值為 1
        cols = usedRange.Columns.Count  # 獲取已使用范圍的最大列數,初始值為 1
        print(rows, cols) # 輸出 1 1
        usedRange.Rows.RowHeight = 30 # 設置已使用范圍內的行高
        usedRange.Columns.ColumnWidth = 30 # 設置已使用范圍內的列寬
        # do something ...
        row_index = 1
        for index, item in enumerate(['日期', '請求方法', 'URL', '調用次數']):
            # 單元格賦值 sheet.Cells(row_index, col_index).Value = 目標值 row_index, col_index 起始值為1
            sheet.Cells(row_index, index + 1).Value = item
        row_index += 1
        # do something else ...
        usedRange = sheet.UsedRange
        rows = usedRange.Rows.Count
        cols = usedRange.Columns.Count
        print(rows, cols) # 輸出 1 4
        sheet.Cells(1, 2).Font.Size = 29  # 設置單元格字體大小
        sheet.Cells(1, 2).Font.Bold = True  # 字體是否加粗 True 表示加粗,False 表示不加粗
        sheet.Cells(2, 2).Font.Name = "微軟雅黑" # 設置字體名稱
        # sheet.Cells(2, 2).Font.Color = RGB(0, 0, 255) # 設置字體顏色 # 不起作用
        sheet2 = excel_app.Worksheets.Add()  # 添加Sheet頁
        sheet2.Activate # 設置默認選中的sheet為sheet2
        sheet3 = excel_app.Worksheets.Add()
        #注意,Move操作,會將被移動的表單(本例中的sheet)設置為默認選中狀態,也就是說覆蓋 sheet.Activate所做的變更
        sheet.Move(sheet3, None)  # 將sheet移動到sheet3之前
        book.SaveAs(result_file_path) # 注意:結果文件路徑必須是絕對路徑
        book.Close() # 關閉工作簿
        excel_app.Quit() # 退出
    if __name__ == '__main__':
        save_something_to_excel('D:\\codePojects\\logStatistics\\result\\result.xlsx')

    讀取現有EXCEL

    import win32com.client
    def read_something_from_excel(excel_file_path):
        excel_app = win32com.client.Dispatch('Excel.Application')
        excel_app.Visible = False
        excel_app.DisplayAlerts = False
        book = excel_app.Workbooks.Open(result_file_path, False, True, None, None) # 打開工作簿
        # do something ...
        sheet = excel_app.Worksheets(1)
        print(sheet.name)
        print(sheet.Cells(1, 1).Value)
        book.SaveAs(result_file_path) # 注意:結果文件路徑必須是絕對路徑
        book.Close() # 關閉工作簿
        excel_app.Quit() # 退出
    if __name__ == '__main__':
        read_something_from_excel('D:\\codePojects\\logStatistics\\result\\result.xlsx')

    多線程場景下使用

    import threading
    import win32com.client
    import pythoncom
    def save_something_to_excel(result_file_path):
        pythoncom.CoInitialize()
        excel_app = win32com.client.DispatchEx('Excel.Application')
        # excel_app = win32com.client.Dispatch('Excel.Application')
        excel_app.Visible = False
        excel_app.DisplayAlerts = False
        book = excel_app.Workbooks.Add()
        sheet = excel_app.Worksheets(1)
        sheet.name = '匯總統計'
        row_index = 1
        for index, item in enumerate(['日期', '請求方法', 'URL', '調用次數']):
            sheet.Cells(row_index, index + 1).Value = item
        row_index += 1
        book.SaveAs(result_file_path)
        book.Close()
        excel_app.Quit()
        pythoncom.CoUninitialize() # 釋放資源
    if __name__ == '__main__':
        for i in range(3):
            file_path = 'D:\\codePojects\\logStatistics\\result\\result%s.xlsx' % i
            thread = threading.Thread(target=save_something_to_excel,
                                      args=(file_path,))
            thread.start()

    說明:

    • 如果不添加以下代碼行:

    pythoncom.CoInitialize()

    會報錯,如下:

    pywintypes.com_error: (-2147221008, '尚未調用 CoInitialize。', None, None)
    • 建議使用

    excel_app = win32com.client.DispatchEx('Excel.Application')

    替代

    # excel_app = win32com.client.Dispatch('Excel.Application')

    實踐發現,多線程的情況下,使用Dispatch會出現報錯,原因似乎是Dispatch若發現進程已經存在的話,就不會創建新的進程。若不創建新的進程,有些操作會有沖突,可能會影響到已經打開的文件。

    “Python基于win32com客戶端怎么實現Excel操作”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    龙川县| 尤溪县| 鄂伦春自治旗| 积石山| 灌阳县| 利辛县| 红原县| 若羌县| 芦溪县| 铁岭县| 贵德县| 壤塘县| 寿光市| 新化县| 镇康县| 砀山县| 三原县| 涡阳县| 石嘴山市| 米林县| 姜堰市| 东乡族自治县| 铜山县| 大厂| 甘谷县| 通化市| 绥中县| 宜春市| 沐川县| 澄江县| 奎屯市| 广河县| 吉木乃县| 湟中县| 吴川市| 长宁县| 宜都市| 涡阳县| 乌什县| 保康县| 湾仔区|