pip install openpyxl
import openpyxl
def code_main():
xlsx_file_name = r'D:\ljh\work_info\test.xlsx' # excel檔案路徑
xlsx_data = openpyxl.load_workbook(xlsx_file_name)
table = xlsx_data.active # 當前正在活躍的表,也可以指定Sheet物件:table = xlsx_data.active(Sheet1),新版庫用 .active, 舊版庫可用 wb.get_sheet_by_name('Sheet1')
print(table.title) # 輸出表名
nrows = table.max_row # 獲得行數
ncolumns = table.max_column # 獲得行數
print(nrows, ncolumns)
for row in range(1, 10):
# 讀取
title = table.cell(row, 1).value # 獲取 第row行 第1列的 表格資料
print(title)
desc = table.cell(row, 3).value # 獲取 第row行 第3列的 表格資料
print(desc)
# 寫入
write_data = "寫入的資料"
table.cell(row, 4).value = write_data # 寫入第row行 第4列的 表格
xlsx_data.save(xlsx_file_name) # 寫入excel需要進行 .save儲存