📅  最后修改于: 2022-03-11 14:47:19.608000             🧑  作者: Mango
# Program to write to text file using write() function
with open("python.txt", "w") as file:
content = "Hello, Welcome to Python Tutorial !! \n"
file.write(content)
file.close()
# Program to read the entire file (absolute path) using read() function
with open("C:/Projects/Tryouts/python.txt", "r") as file:
content = file.read()
print(content)
file.close()