python txtexcel读写

Posted 绮梦璇玑

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python txtexcel读写相关的知识,希望对你有一定的参考价值。

#从txt写入excel
workbook = xlsxwriter.Workbook(‘植保网.xlsx‘) #创建工作簿
sheet = workbook.add_worksheet()
r=0
for line in open(‘zgzbao_link.1.txt‘,‘r‘,encoding=‘utf-8‘):
line=eval(line)
for m in range(2):
sheet.write(r,m,line[m])
r=r+1
workbook.close()
#从excel写入txt
xl = xlrd.open_workbook(‘植保网.xlsx‘)
table1 = xl.sheet_by_name(u"Sheet1")
nr=table1.nrows
f2= open(‘zgzbao_repeat.txt‘,‘w+‘,encoding=‘utf-8‘)
for i in range(nr):
row=table1.row_values(i)
f2.write(str(row[:2])+ )
f2.close()
 
 

以上是关于python txtexcel读写的主要内容,如果未能解决你的问题,请参考以下文章

Python—对Excel进行读写操作

第17天---python办公自动化---读写Excel文件

python 操作excel读写

python excel读写与dict转换

python读写excel

Python读写EXCEL文件常用方法大全