I want to convert the dictionary of folowing format to a csv file using python:
{ "Mon" : [1, 4, 6],
"Tue":[5,7,8],
"Wed" : [5,8,1]
}
I want to convert the dictionary of folowing format to a csv file using python:
{ "Mon" : [1, 4, 6],
"Tue":[5,7,8],
"Wed" : [5,8,1]
}