Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Writing to a text file?
Post: RE: Writing to a text file?

(Oct-12-2018, 12:58 AM)Larz60+ Wrote: open a text file: with open('myfilename.txt', 'w') as fp: for row in rows: fp.write(row)But the csv file is already a file, and can be used as any o...
Bigjay45 General Coding Help 4 3,163 Oct-12-2018, 01:25 AM
    Thread: Writing to a text file?
Post: Writing to a text file?

import csv with open('animals3.csv') as csvfile: readCSV = csv.reader(csvfile, delimiter=',') for row in readCSV: print(row[0]) print(row[1]) p...
Bigjay45 General Coding Help 4 3,163 Oct-11-2018, 11:11 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020