Answers for "how to open a text file in python code"

1

read a text file in python

f = open("welcome.txt", "r")
print(f.read()) 
f.close()
Posted by: Guest on July-28-2021
18

open text file in python

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

Code answers related to "how to open a text file in python code"

Python Answers by Framework

Browse Popular Code Answers by Language