Anyone knows how to create a xls file from a dict? I have a dictionary filled with words in a text, i want to put this DICT in a 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
It's diferent becorse, i want to create a MS Excel from a DICT, a DICT