Answers for "load texte 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 text file in python

file = '/home/text/chapter001.txt'
f=open(file,'r')
data = f.read()
print('data =',data)
Posted by: Guest on September-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language