Answers for "open file and read data python"

41

python read file

with open("file.txt", "r") as txt_file:
  return txt_file.readlines()
Posted by: Guest on November-30-2020
0

read a data file in python

import pandas as pd

df = pd.read_csv('data.csv')

print(df.to_string())
Posted by: Guest on April-21-2021

Code answers related to "open file and read data python"

Python Answers by Framework

Browse Popular Code Answers by Language