from openpyxl import Workbook wb = Workbook() ws = wb.active # 需要合并的左上方和右下方单元格坐标 ws.merge_cells(range_string='A1:B3') ...
確定! 回上一頁