Answers for "how to read data file in 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
-1

how to read a file in python

# when you want to read the file from terminal in python use 
import sys
f = open(sys.argv[1])
line=f.readline()
Posted by: Guest on March-05-2021

Code answers related to "how to read data file in python"

Python Answers by Framework

Browse Popular Code Answers by Language