博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python-excel模块
阅读量:6293 次
发布时间:2019-06-22

本文共 951 字,大约阅读时间需要 3 分钟。

1 import pymysql,xlwt 2 def export_excel(table_name): 3     host, user, passwd, db = '118.24.3.40', 'jxz', '123456', 'jxz' 4     coon = pymysql.connect(user=user,host=host,port=3306,passwd=passwd,db=db,charset='utf8' ) 5     cur = coon.cursor() 6     sql = 'select * from %s;'%table_name 7     cur.execute(sql)  # 执行sql 8     fileds = [filed[0] for filed in cur.description]#所有字段 9     all_data = cur.fetchall()10     book = xlwt.Workbook()11     sheet = book.add_sheet('sheet1')12     # col = 013     # for filed in fileds:#写表头14     #     sheet.write(0,col,filed)15     #     col+=116     for col,filed in enumerate(fileds):#写表头17         sheet.write(0,col,filed)18     row = 1#控制行数19     for data in all_data:#行数20         for col, filed in enumerate(data):#列数21             sheet.write(row, col, filed)22         row+=1#每次写完一行,行数加123     book.save('%s.xls'%table_name)24 export_excel('app_student')

 

转载于:https://www.cnblogs.com/ymany/p/9026656.html

你可能感兴趣的文章
百度云盘demo
查看>>
概率论与数理统计习题
查看>>
初学structs2,简单配置
查看>>
Laravel5.0学习--01 入门
查看>>
时间戳解读
查看>>
sbin/hadoop-daemon.sh: line 165: /tmp/hadoop-hxsyl-journalnode.pid: Permission denied
查看>>
@RequestMapping 用法详解之地址映射
查看>>
254页PPT!这是一份写给NLP研究者的编程指南
查看>>
《Data Warehouse in Action》
查看>>
String 源码浅析(一)
查看>>
Spring Boot 最佳实践(三)模板引擎FreeMarker集成
查看>>
Fescar 发布 0.2.3 版本,支持 Redis 和 Apollo
查看>>
Google MapReduce到底解决什么问题?
查看>>
CCNP-6 OSPF试验2(BSCI)
查看>>
Excel 2013 全新的图表体验
查看>>
openstack 制作大于2TB根分区自动扩容的CENTOS镜像
查看>>
Unbuntu安装遭遇 vmware上的Easy install模式
查看>>
几个常用的ASP木马
查看>>
python分析postfix邮件日志的状态
查看>>
Mysql-5.6.x多实例配置
查看>>