1. 首页
  2. 数据库
  3. 其它
  4. python生成excel的实例代码

python生成excel的实例代码

上传者: 2021-02-01 12:01:35上传 PDF文件 43KB 热度 14次
本文实例为大家分享了python生成excel的具体代码,供大家参考,具体内容如下 #_*_coding:utf-8_*_ import MySQLdb import xlwt from datetime import datetime def get_data(sql): # 创建数据库连接. conn = MySQLdb.connect(host='127.0.0.1',user='root' ,passwd='123456',db='test',port=3306,charset='utf8') # 创建游标 cur = conn.cursor() # 执行查询,
用户评论