Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

convert a text file data to dataframe in python without pandas

import csv

with open('log.txt', 'r') as in_file:
    stripped = (line.strip() for line in in_file)
    lines = (line.split(",") for line in stripped if line)
    with open('log.csv', 'w') as out_file:
        writer = csv.writer(out_file)
        writer.writerow(('title', 'intro'))
        writer.writerows(lines)
Source by www.edureka.co #
 
PREVIOUS NEXT
Tagged: #convert #text #file #data #dataframe #python #pandas
ADD COMMENT
Topic
Name
3+4 =