I want to save this print output to CSV file but this code is not working, how can I save this output to CSV?
1 2 3 4 5 6 7 8 9 |
import csv for x in range ( 2000 , 3000 ): print ( 'hi' , x, sep = '') f = open ( 'op2.csv' , 'w' ) writer = csv.writer(f) writer.writerow( print ()) f.close() |