python向已存在的excel中新增表,不覆盖原数据的实例

作者:xxzhix 时间:2022-04-26 15:16:51 

每月需更新某个excel表格,进行两项操作,且不覆盖原有的sheet:

1. 在原来的excel表中新增sheet

2. 往原有的excel表中的某张sheet新增内容

基于python3,使用xlrd,xlwt,具体代码如下,亲测有效,希望对大家有帮助,谢谢!


import xlwt
import xlrd
from xlutils.copy import copy
#打开需要操作的excel表
wb=xlrd.open_workbook(path)
#复制原有表
newb=copy(wb)
#新增sheet,参数是该sheet的名字,可自定义
wbsheet=newb.add_sheet(dl+'-'+dn)
#向新sheet中写入数据。本代码中的d是某个dataframe
wbsheet.write(0,0,'date')
wbsheet.write(0,1,'visited')
wbsheet.write(0,2,'success')
for i in range(d.shape[0]):
 wbsheet.write(i + 1, 0, d.iloc[i, 0])
 for j in range(1,d.shape[1]):
   wbsheet.write(i+1,j,int(d.iloc[i,j]))
#获取原有excel表中sheet名为‘summary'的sheet
sumsheet=newb.get_sheet('summary')
#k表示该sheet的最后一行
k=len(sumsheet.rows)
#想原有sheet后面新增数据
sumsheet.write(k,0,dl+'-'+dn)
sumsheet.write(k,1,int(sum(d['visited'])))
sumsheet.write(k,2,int(sum(d['success'])))
#保存为原有的excel表路径
newb.save(path)

来源:https://blog.csdn.net/xxzhix/article/details/79324554

标签:python,excel,新增,表,覆盖
0
投稿

猜你喜欢

  • 从零开始学Python第八周:详解网络编程基础(socket)

    2023-09-04 05:16:20
  • python中尾递归用法实例详解

    2023-10-09 06:46:15
  • AJAX 自学练习 无刷新提交并修改数据库数据并显示

    2024-01-18 20:21:23
  • uwsgi+nginx部署Django项目操作示例

    2021-05-04 02:23:50
  • 微信小程序应用号开发体验

    2022-03-12 12:56:02
  • python 性能提升的几种方法

    2022-05-21 06:38:18
  • 在PB中如何让用户只能修改新增的数据

    2023-11-27 15:59:52
  • Python按键或值对字典进行排序

    2021-01-02 10:45:52
  • Python切片知识解析

    2022-06-07 06:31:58
  • pytorch 自定义参数不更新方式

    2021-11-11 01:55:55
  • Python Scapy随心所欲研究TCP协议栈

    2023-06-10 23:12:29
  • MySQL5创建存储过程实例

    2010-06-13 12:49:00
  • python读写删除复制文件操作方法详细实例总结

    2022-07-29 05:58:56
  • Pycharm不同版本镜像源添加方法

    2023-08-24 15:59:43
  • asp如何在线压缩Access数据库?

    2010-06-26 12:25:00
  • python目标检测基于opencv实现目标追踪示例

    2022-05-10 13:12:30
  • perl中的范围声明our-my-local介绍

    2022-12-15 02:21:50
  • 在vue中利用全局路由钩子给url统一添加公共参数的例子

    2024-04-28 10:55:44
  • Pytorch DataLoader 变长数据处理方式

    2022-08-06 23:07:50
  • 有效地使用 SQL事件探查器的提示和技巧

    2009-01-15 13:39:00
  • asp之家 网络编程 m.aspxhome.com