python怎么把数据导入excel

2025-04-02 06:54:51
推荐回答(1个)
回答1:

读取mysql数据,填写数据到excel
from
pyexcel_xls
import
save_datafrom
pyexcel_xls
import
get_datafrom
collections
import
ordereddictimport
mysql.connector
#和数据库建立连接cnx
=mysql.connector.connect(user='root',
password='',
host='127.0.0.1',
database='test')#查询语句sql
=
"select
my_name,my_value
from
tbl_members
"#执行查询cursor.execute(sql)#获得查询结果result
=
cursor.fetchall()
cursor.close()cnx.close()
#打开预定义表头文件xls_header=
get_data("d:/xh.xls")
#获得表头数据xh
=
xls_header.pop("sheet1")
#拼接整表数据xd
=
ordereddict()xd.update({"sheet
1":xh+result})
#保存到另一个文件中save_data("d:/xd.xls",xd