Python编程快速上手让繁琐工作自动化第13章实践项目空行插入程序
2021/9/5 11:06:27
本文主要是介绍Python编程快速上手让繁琐工作自动化第13章实践项目空行插入程序,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
import openpyxl,os
os.chdir('D://')
a = input('输入文件名:')
n = eval(input('第N行开始?'))
m = eval(input('插入M行?'))
wb = openpyxl.load_workbook(a)
sheet = wb.active
i = sheet.max_row
if n >= i:
print('超出行数!最大行数为' + str(i))
while i >= n:
for j in range(1,sheet.max_column+1):
sheet.cell(row=i+m,column=j).value = sheet.cell(row=i,column=j).value
i -= 1
for q in range(n+1,n+m+1):
for j in range(1,sheet.max_column+1):
sheet.cell(row=q,column=j).value = ''
wb.save(a)
print('Done!')
这篇关于Python编程快速上手让繁琐工作自动化第13章实践项目空行插入程序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型
- 2024-12-23使用python部署一个usdt合约,部署自己的usdt稳定币
- 2024-12-20Python编程入门指南