Answers for "how to read data from a file in python"

73

python write to file

file = open(“testfile.txt”,”w”) 
 
file.write(“Hello World”) 
file.write(“This is our new text file”) 
file.write(“and this is another line.”) 
file.write(“Why? Because we can.”) 
 
file.close() 
Posted by: Guest on December-09-2019
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 from a file in python"

Python Answers by Framework

Browse Popular Code Answers by Language