python 字典转 excel 表格 Posted on 2018-08-29 | 使用 pandas 把字典转为表格文件 依赖模块1pip install pandas xlwt openpyxl CODE123# -*- coding: utf-8 -*-import pandas as pd data = { 'name': 'Jon', 'age': '23', 'id': '123456789' } df = pd.DataFrame([data,]) df.to_excel('1.xlsx',) df.to_excel('2.xlsx', index=False) df.to_excel('3.xlsx', header=False) # 转置 df = pd.DataFrame([data,]).T df.to_excel('4.xlsx',) IMAGE 参考资料 stackoverflow pandas docs xlsxwriter