Nov-06-2016, 04:40 PM
I want to write a web page to a csv file. Error said file not open, but it should be. here is the code:
This is the first time I try this.
thank you
1 2 3 4 5 6 7 8 9 |
import csv import urllib2 with open ( "results.csv" , "w" ) as f: writer = csv.writer(f) writer.writerow([urllib2.urlopen]) |
thank you
