Python导出DBF文件到Excel的方法
程序员文章站
2022-05-17 14:57:13
...
本文实例讲述了Python导出DBF文件到Excel的方法。分享给大家供大家参考。具体如下:
from dbfpy import dbf from time import sleep from win32com import client def dbf2xls(dbfilename, exfilename): db = dbf.Dbf(dbfilename, True) ex = client.Dispatch('Excel.Application') wk = ex.Workbooks.Add() ws = wk.ActiveSheet ex.Visible = True sleep(1) r = 1 c = 1 for field in db.fieldNames: ws.Cells(r,c).Value = field c = c+1 r = 2 for record in db: c = 1 for field in db.fieldNames: ws.Cells(r,c).Value = record[field] c = c+1 r = r+1 wk.SaveAs(exfilename) wk.Close(False) ex.Application.Quit() db.close() if __name__=='__main__': dbffilename = "test.dbf" xlsfilename = "text.xls" dbf2xls(dbffilename, xlsfilename)
希望本文所述对大家的Python程序设计有所帮助。
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
相关文章
相关视频
下一篇: php URL的优化方法