Answers for "read text file in python3"

1

read a text file in python

f = open("welcome.txt", "r")
print(f.read()) 
f.close()
Posted by: Guest on July-28-2021
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