Hi Im a newbie about python,
I have 2000 list of company that I want to share in my website. I was able to import my csv file, using python script. This is my code:
import csv
with open('test.csv', 'r') as csvfile:
r = csv.reader(csvfile, delimiter=',')
for row in r:
print (row)
Will you help me on how can I print this to a file?
Thanks!