46-Write_a_dictionary_to_text_or_csv_file.py


Sign up Free. Don't forget to check out our challenges, lessons, solve and learn series and more ...


Code Snippet

import csv

#this particular example shows a nested dictionary with username(key) and user info (pair) stored as a list
dict = {'username' : [gender,age,password]}
w = csv.writer(open("output.csv", "w"))
for key, val in dict.items():
w.writerow([key, val])                    

Try it yourself