python写入已存在的excel数据实例
作者:hqzxsc2006 时间:2021-05-17 15:08:17
python可以使用xlrd读excel,使用xlwt写excel,但是如果要把数据写入已存在的excel,需要另外一个库xlutils配合使用.
大概思路:
1、用xlrd.open_workbook打开已有的xsl文件
注意添加参数formatting_info=True,得以保存之前数据的格式
2、然后用,from xlutils.copy import copy;,之后的copy去从打开的xlrd的Book变量中,拷贝出一份,成为新的xlwt的Workbook变量
3、然后对于xlwt的Workbook变量,就是正常的:
通过get_sheet去获得对应的sheet,拿到sheet变量后,就可以往sheet中,写入新的数据
4、写完新数据后,最终save保存
源码例子:
import xlrd
import os
from xlutils.copy import copy
from xlwt import Style
def writeExcel(row, col, str, styl=Style.default_style):
rb = xlrd.open_workbook(file, formatting_info=True)
wb = copy(rb)
ws = wb.get_sheet(0)
ws.write(row, col, str, styl)
wb.save(file)
style = xlwt.easyxf('font:height 240, color-index red, bold on;align: wrap on, vert centre, horiz center');
writeExcel(1, 1, 'hello world', style)
如果需要excel原格式,需要加参数
formatting_info=True
如果需要加excel样式,传入样式字符串给xlwt.easyxf即可
合并单元格:
ws.write_merge(top_row, bottom_row, left_column, right_column, string)
来源:https://blog.csdn.net/hqzxsc2006/article/details/51768351
标签:python,写入,excel
0
投稿
猜你喜欢
Python入门第1/10页
2023-03-19 19:34:34
Linux中Oracle启动侦听报错TNS:permission denied的解决方法
2024-01-14 02:44:17
vue路由警告:Duplicate named routes definition问题
2024-05-13 09:13:23
使用Python实现Wake On Lan远程开机功能
2023-07-26 21:44:06
基于python 的Pygame最小开发框架
2022-01-23 12:22:40
如何批量生成MySQL不重复手机号大表实例代码
2024-01-23 13:41:02
python中判断数字是否为质数的实例讲解
2022-02-17 13:19:05
javascript 得到变量类型的函数
2024-04-30 08:53:34
Python+OpenCV图像处理之直方图统计
2023-11-19 19:17:31
Python3 解释器的实现
2023-08-09 17:08:53
Django中使用haystack+whoosh实现搜索功能
2021-10-12 23:54:14
linux 安装 mysql 8.0.19 详细步骤及问题解决方法
2024-01-13 22:31:33
OpenCV-PS扩散毛玻璃效果的实现代码
2022-03-17 22:45:52
简单了解Javscript中兄弟ifream的方法调用
2024-04-22 22:29:30
Linux服务器网卡流量查看方法 shell和Python各一枚
2023-10-07 09:31:19
自定义 Github Action 库实战详解
2022-04-07 13:19:00
Python cookbook(数据结构与算法)将名称映射到序列元素中的方法
2021-06-06 01:26:54
SQL Server 2008 阻止保存要求重新创建表的更改问题的设置方法
2024-01-14 13:53:03
Flask web上传获取图像Image读取并使用方式
2021-06-14 11:37:58
pycharm运行scrapy过程图解
2022-07-19 19:30:20