python 合并 Excel 单元格
import os, openpyxl
#path = 'D:\\pySpace'
#os.chdir(path)
wb = openpyxl.Workbook()
sheet = wb.get_active_sheet()
sheet.merge_cells('B2:D4')
sheet.cell(row=2, column=2).value = '合并9个单元格'
sheet.merge_cells('C5:D6')
sheet['C5'] = '合并了4个单元格'
wb.save('合并单元格.xlsx')
打开 合并单元格.xlsx 文件,效果入下
提示:设置路径的两行代码需根据实际情况编写。
非学无以广才,非志无以成学。