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

Python操作Excel之xlwt

时间:2016-05-25 16:42:45      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

#写入
import xlwt
workbook=xlwt.Workbook()
sheetn=workbook.add_sheet(u"测试数据",cell_overwrite_ok=True)
sheetn.write(0,0,u"中国")
sheetn.write(1,0,u"美国")
sheetn.write(2,0,u"德国")
style=xlwt.XFStyle()
ft=xlwt.Font()
ft.name="Times New Roman"
ft.bold=True
style.font=ft#第一种style
style2=xlwt.easyxf(‘pattern:pattern solid,fore_colour red;font:bold on;‘)#第二种style
sheetn.write(4,4,"Get over",style)
sheetn.write(4,5,u"测试时",style2)
workbook.save("test2.xlsx")

Python操作Excel之xlwt

标签:

原文地址:http://www.cnblogs.com/douyunqian3520/p/5527294.html

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