Answers for "datafrmae to csv python"

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

Python Answers by Framework

Browse Popular Code Answers by Language