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:
thank you
import csv import urllib2 with open("results.csv", "w") as f: writer = csv.writer(f) urllib2.urlopen("https://www.kali.org/") writer.writerow([urllib2.urlopen])This is the first time I try this.
thank you
