Answers for "reading and writing text in the file"

13

python read file to variable

with open('data.txt', 'r') as file:
    data = file.read().replace('\n', '')
Posted by: Guest on February-27-2020
18

open text file in python

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

Code answers related to "reading and writing text in the file"

Python Answers by Framework

Browse Popular Code Answers by Language