python excel

782 ワード

python xlwtによるexcelのエクスポート
xlwtを選択し、https://pypi.python.org/pypi/xlwtダウンロードのインストール
#!/usr/bin/python
#-*-coding:gbk-*-

import xlwt

import re
import logging
import string
import db


def createExcel():
    wbk = xlwt.Workbook()
    sheet  = wbk.add_sheet(u'sheet1')
    createXLSTitle(sheet) 
    for i in range(10):
        createXLS(sheet, i)
    wbk.save("c:/t1.xls")
    
def createXLSTitle(sheet):
    sheet.write(0,0,u"    ")
    sheet.write(0,1,u"    ")
    sheet.write(0,2,u"    ")
def createXLS(sheet,int):
    a = int+1
    sheet.write(a,0,u"  ")
    sheet.write(a,1,u" adfa")
    sheet.write(a,2,u" adfads  ")
    
if __name__ == '__main__':
    createExcel()