📜  写入文件 python 代码示例

📅  最后修改于: 2022-03-11 14:45:56.566000             🧑  作者: Mango

代码示例6
# 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()