python操作excel(使用openpyxl)

1,效果在这里插入图片描述

2,源码

不废话直接上源码

import openpyxl
def insert_row(row_num, id, projectName, projectId, deviceId, deviceName, time, filepath, content):
    excel_file_name = "data.xlsx"
    excel_dir = "E:\\test\\"
    excel_file_path = os.path.join(excel_dir, excel_file_name)
    wb = openpyxl.load_workbook(file_name) #加载excel文件
    wsheet = wb.get_sheet_by_name('data') #获取sheet句柄

	#插入一行数据
    wsheet.cell(row=row_num, column=1).value = id
    wsheet.cell(row=row_num, column=2).value = projectName
    wsheet.cell(row=row_num, column=3).value = projectId
    wsheet.cell(row=row_num, column=4).value = deviceId
    wsheet.cell(row=row_num, column=5).value = deviceName
    wsheet.cell(row=row_num, column=6).value = time
    wsheet.cell(row=row_num, column=7).value = filepath
    wsheet.cell(row=row_num, column=8).value = content
    wb.save(file_name) #保存文件
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值