Python 对excel数据操作之xlwt模块

Python使用xlwt模块 操作Excel文件

导出Excel文件

    1. 使用xlwt模块 import xlwt

        import xlwt    # 导入xlwt

        # 新建一个excel文件

   file = xlwt.Workbook() #注意这里的Workbook首字母是大写,无语吧

    # 新建一个sheet

    table = file.add_sheet('sheet name')

        # 写入数据table.write(行,列,value)

   table.write(0,0,'test')

        # 如果对一个单元格重复操作,会引发

   returns error:
       # Exception: Attempt to overwrite cell:
     # sheetname=u'sheet 1' rowx=0 colx=0

    # 所以在打开时加cell_overwrite_ok=True 解决

    table = file.add_sheet('sheet name',cell_overwrite_ok=True )

    file.save('demo.xls')  # 保存文件

       另外,使用style

       style = xlwt.XFStyle() # 初始化样式

       font = xlwt.Font() #为样式创建字体

       font.name = 'Times New Roman'

       font.bold = True

       style.font = font #为样式设置字体

       table.write(0, 0, 'some bold Times text', style) # 使用样式

       xlwt 允许单元格或者整行地设置格式。还可以添加链接以及公式。可以阅读源代码,那里有例子:

       dates.py, 展示如何设置不同的数据格式

       hyperlinks.py, 展示如何创建超链接 (hint: you need to use a formula)

       merged.py, 展示如何合并格子

       row_styles.py, 展示如何应用Style到整行格子中.

 

   例子一:

             import xlwt
      wbk = xlwt.Workbook()
      sheet = wbk.add_sheet('sheet 1')
      # indexing is zero based, row then column
      sheet.write(0,1,'test text')
      sheet.write(1,1,'test text')
      wbk.save('test2.xls')  默认保存在桌面上

 

先来个简单的例子:

#!/usr/bin/python
#coding=utf-8
# ==============================================================================
#
#       Filename:  demo.py
#    Description:  excel operat
#        Created:  Tue Apr 25 17:10:33 CST 2017
#         Author:  Yur
#
# ==============================================================================

import xlwt
# 创建一个workbook 设置编码
workbook = xlwt.Workbook(encoding = 'utf-8')
# 创建一个worksheet
worksheet = workbook.add_sheet('My Worksheet')

# 写入excel
# 参数对应 行, 列, 值
worksheet.write(1,0, label = 'this is test')

# 保存
workbook.save('Excel_test.xls')
  
  
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值