Python-操作Excel
一、Excel模块:xlrd(读)、xlwt(写)、xlutils(结合读写可修改excel)
1、从mysql中读取数据
import xlrd,xlwt,xlutils import pymysql def sql_connect(sql): conn = pymysql.connect(host='127.0.0.1',port=3306, user='root', password='123456',db='sql_python',charset='utf8') cur = conn.cursor() cur.execute(sql) data = cur.fetchall() cur.close() conn.close() return data
2、从mysql中读取数据写入excel中