赞
踩
创建一个程序blankRowInserter.py,它接受两个整数和一个文件名字字符串作为命令行参数。我们将第一个整数称为N,第二个整数称为M。程序应该从第N行开始,在电子表格中插入M个空行
#! python3 # blankRowInserter.py - 空白行的插入(无法复制字体font,能力有限) # 引入区 import openpyxl import sys # 参数设置 filename = sys.argv[3] N = int(sys.argv[1]) # start row M = int(sys.argv[2]) # move steps wb = openpyxl.load_workbook(filename) sheet = wb["Sheet1"] for i in range(sheet.max_column+M,N+M-1,-1): # 循环变量i,从最后一行开始 for x in range(1,sheet.max_row + 1): # 横坐标x currentCell = sheet.cell(row=i,column=x) alteredCell = sheet.cell(row=i-M,column=x) currentCell.value = alteredCell.value alteredCell.value = "" # save wb.save(filename)
问:是否有高手可以考虑字体font的复制?这里cell1.font=cell2.font会报错
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。