Python之excel文件追加内容

Posted Water

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之excel文件追加内容相关的知识,希望对你有一定的参考价值。

首先要安装三个模块:xlrd,xlwt,xlutils

命令:pip install xlrd xlwt xlutils

 

示例代码:

 1 #!/usr/bin/env python
 2 # -*- coding:utf-8 -*-
 3 
 4 from xlrd import open_workbook
 5 from xlutils.copy import copy
 6 
 7 r_xls = open_workbook("test.xls") # 读取excel文件
 8 row = r_xls.sheets()[0].nrows # 获取已有的行数
 9 excel = copy(r_xls) # 将xlrd的对象转化为xlwt的对象
10 table = excel.get_sheet(0) # 获取要操作的sheet
11 
12 #对excel表追加一行内容
13 table.write(row, 0, 内容1) #括号内分别为行数、列数、内容
14 table.write(row, 1, 内容2)
15 table.write(row, 2, 内容3)
16 
17 excel.save("test.xls") # 保存并覆盖文件

 

以上是关于Python之excel文件追加内容的主要内容,如果未能解决你的问题,请参考以下文章

python 往excel中追加内容

python操作excel文件

使用for循环(Python)追加/连接多个excel数据集

python pandas在已存在的excel中追加数据

用python模糊检索EXCEL文件的内容,并写入新的EXCEL表?

Python读写/追加excel文件Demo