Answers for "read the file as TextFile and then convert it to a Dataframe"

11

read txt file pandas

df = pd.read_csv('output_list.txt', sep=" ", header=None, names=["a", "b", "c"])
Posted by: Guest on August-27-2020
0

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)
Posted by: Guest on January-23-2021

Code answers related to "read the file as TextFile and then convert it to a Dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language