Answers for "python csv to data file"

0

python convert dat file to csv

import csv

with open("infile.dat") as infile, open("outfile.csv", "w") as outfile:
    csv_writer = csv.writer(outfile)
    prev = ''
    csv_writer.writerow(['ID', 'PARENT_ID'])
    for line in infile.read().splitlines():
        csv_writer.writerow([line, prev])
        prev = line
Posted by: Guest on June-25-2020

Code answers related to "python csv to data file"

Python Answers by Framework

Browse Popular Code Answers by Language