python编程快速上手之第12章实践项目参考答案(12.13.2)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python编程快速上手之第12章实践项目参考答案(12.13.2)相关的知识,希望对你有一定的参考价值。
#! python3 # blankRowInserter.py import openpyxl,os os.chdir(‘C:\\Users\\Administrator\\Python35-32‘) n=int(input(‘rowNum‘)) m=int(input(‘insertrowNum‘)) name=(‘updatedProduceSales2.xlsx‘) wb = openpyxl.load_workbook(name) wbnew=openpyxl.Workbook() sheet = wb.get_active_sheet() sheetnew=wbnew.get_active_sheet() for rowNum in range(1, sheet.max_row+1): if rowNum > n-1: for colNum in range(1,sheet.max_column+1): produceName = sheet.cell(row=rowNum, column=colNum).value sheetnew.cell(row=rowNum+m, column=colNum).value = produceName else: for colNum in range(1,sheet.max_column+1): produceName = sheet.cell(row=rowNum, column=colNum).value sheetnew.cell(row=rowNum, column=colNum).value = produceName wbnew.save(‘blankRowInserter.xlsx‘)
以上是关于python编程快速上手之第12章实践项目参考答案(12.13.2)的主要内容,如果未能解决你的问题,请参考以下文章
python编程快速上手之第12章实践项目参考答案(12.13.3)
python编程快速上手之第10章实践项目参考答案(11.11.2)