python复制字典到excel

我有这本词典:


dict1 = {"Name": 'Bob', "Surname": 'red', "Age": 17 }


如何将字典复制到excel文件中?我想要这个输出:


           Name       Surname          Age

           Bob        Red              17

谢谢!


潇潇雨雨
浏览 160回答 3
3回答

神不在的星期二

如果要保证标题顺序(对于 3.7 之前的 Python 版本),则需要在列表中指定它。您可以使用该xlwt库:import xlwtfrom datetime import datetimewb = xlwt.Workbook()ws = wb.add_sheet('My Sheet')dict1 = {"Name": 'Bob' , "Surname": 'red', "Age": 17 }headings = ['Name', 'Surname', 'Age']for i,heading in enumerate(headings):    ws.write(0, i, heading)    ws.write(1, i, str(dict1[heading]))wb.save('example.xls')
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python