栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

python对excel单元格数据进行修改

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

python对excel单元格数据进行修改

from openpyxl import Workbook
from openpyxl import load_workbook

file_home = r'D:FPFBST.xlsx'

wb = load_workbook(filename=file_home)  
sheet_ranges = wb['检测管1']
ws = wb['检测管1']  

s=0
for c in range(0,41):
    c+=1
    print(sheet_ranges['a'+str(c)].value)
    ws['a'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s).zfill(4))
    ws['b'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+1).zfill(4))
    ws['c'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+2).zfill(4))
    ws['d'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+3).zfill(4))
    ws['e'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+4).zfill(4))
    ws['f'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+5).zfill(4))
    ws['g'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+6).zfill(4))
    ws['h'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+7).zfill(4))
    ws['i'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+8).zfill(4))
    ws['j'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+9).zfill(4))
    ws['k'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+10).zfill(4))
    ws['l'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+11).zfill(4))
    ws['m'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+12).zfill(4))
    ws['n'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+13).zfill(4))
    ws['o'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+14).zfill(4))
    ws['p'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+15).zfill(4))
    ws['q'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+16).zfill(4))
    ws['r'+str(c)]=(sheet_ranges['a'+str(c)].value)[0:-4] + (str(c+s+17).zfill(4))
    s+=35
wb.save(file_home)  
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/357594.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号