python如何向表格中添加数据,不覆盖原有数据?

python如何向表格中添加数据,不覆盖原有数据?,第1张

import xlrd

from xlutils.copy import copy

向已存在Excel中添加sheet:

#打开需要 *** 作的excel表

wb=xlrd.open_workbook(path)

#复制原有表

newb=copy(wb)

#新增sheet

wbsheet=newb.add_sheet(“sheet名”)

向已存在sheet中添加行

#获取原有excel表中名为‘table'的sheet

tabsheet = newb.get_sheet('table')

#k表示该sheet的最后一行

k=len(tabsheet.rows)

#在原有sheet后面新增数据

tabsheet.write(k,0,data1)

tabsheet.write(k,1,data2)

望采纳!

注意:以下只是方法过程,具体变量参数得根据你们自己实际

import requests #导入包

header= {'Authorization':self.token}  #在头信息中添加token

param = {'productId':617,'currentUserId':1143}#这里是接口要传的参数,我用字典传

response = requests.post(self.url_add_Record,params=param,headers=header,)  #发送requests接口请求将url、params、heads传进去

res = response.json()#返回的response转化成json串

print(res) #打印res


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/7982038.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-12
下一篇 2023-04-12

发表评论

登录后才能评论

评论列表(0条)

保存