Answers for "how to open text file python"

1

read a text file in python

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

Python Answers by Framework

Browse Popular Code Answers by Language