So I have a dictionary of 98 elements and I need to write each key:value to a CSV file.
For example:
{‘Group1′:values,’Group2’:values}, etc…
So in this example I would need two (2) csv files:
- Group1_output.csv
- Group2_output.csv
I am thinking I need a for loop but I am getting a little stuck:
JavaScript
x
3
1
for element in DataFrameDict:
2
element.to_csv(f'{element}_output.csv')
3
Advertisement
Answer
Try this since your data is stored in a dict:
JavaScript
1
7
1
for key, values in dict.items():
2
f = open("{}_output.csv".format(key),"w")
3
f.write(key)
4
for i in values:
5
f.write("," + str(i))
6
f.close()
7