Answers for "how to import a txt file in python"

2

python import text file

f = open('words.txt', 'r')
#then to store
content = f.read()
Posted by: Guest on March-31-2021
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 import a txt file in python"

Python Answers by Framework

Browse Popular Code Answers by Language