Answers for "python read content of file"

2

how to get the contents of a txt file in python

path= #path here
with open(path) as file
	contents = file.read()
Posted by: Guest on March-21-2021
8

python - save file

def save_to_file(content, filename):
    with open(filename, 'w') as file:
        file.write(content)

import file_operations
file_operations.save_to_file('my_content', 'data.txt')
Posted by: Guest on August-11-2020
18

open text file in python

f=open("Diabetes.txt",'r')
f.read()
Posted by: Guest on April-25-2020
1

read entire content of a file using infile python

#Create a variable for the file name
filename = 'Plates_output_simple.csv' #This is simply a string of text

#Open the file
infile = open(filename, 'r') # 'r' says we are opening the file to read, infile is the opened file object that we will read from

#Store the data from the file in a variable
data = infile.read()

#Print the data in the file
print(data)

#close the file
infile.close()
Posted by: Guest on June-08-2020
7

python file reading

fin = open("NAME.txt", 'r')
body = fin.read().split("\n")
line = fin.readline().strip()
Posted by: Guest on May-06-2020

Python Answers by Framework

Browse Popular Code Answers by Language