Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python csv to excel

with open('dict.csv', 'w') as csv_file:  
    writer = csv.writer(csv_file)
    for key, value in mydict.items():
       writer.writerow([key, value])
Source by datatofish.com #
 
PREVIOUS NEXT
Tagged: #python #csv #excel
ADD COMMENT
Topic
Name
2+3 =