码迷,mamicode.com
首页 > 编程语言 > 详细

python txt、excel读写

时间:2019-01-07 22:48:02      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:mon   link   exce   tab   open   repeat   weight   enc   uri   

#从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])+\n)
f2.close()
 
 

python txt、excel读写

标签:mon   link   exce   tab   open   repeat   weight   enc   uri   

原文地址:https://www.cnblogs.com/qmxj-blog/p/10235788.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!