-1

任何人都知道如何从字典创建 xls 文件?我有一本字典,里面装满了文本中的单词,我想把这个 DICT 放在 xls 中

def contar_Repetidas(texto):
    dic={}
    l=texto.split()
    for palabra in l:
        if palabra not in dic:
            dic[palabra] = 1
        else:
            dic[palabra] +=1
    return dic

这是不同的,我想从一个 DICT 创建一个 MS Excel,一个 DICT

4

1 回答 1

2

使用xlwt模块:

import xlwt

dic = contar_Repetidas("Some Text Here")

wb = xlwt.Workbook()
ws = wb.add_sheet("Your Sheet")

count = 0
for word, num in dic.items():
    count += 1
    ws.write(count, 1, word)
    ws.write(count, 2, num)

wb.save("/Path/To/Save/Example.xls")
于 2013-08-26T16:48:14.870 回答