I have a dictionary with multiple values for each key. I add the values using the following code:
d.setdefault(key, []).append(values)
The key value correspondence looks like this:
a -el1,el2,el3
b -el1,el2
c -el1
I need to loop thru the dictionary and write in an excel file:
Column 1 Column 2
a el1
el2
el3
b el1
el2
c el1
For writing in the excel file I use xlsxwriter. I need help looping separately thru the dictionary, because after writing the key and I don't need to write it again until I finish all the corresponding values.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…