📜  在 python 代码示例中读取文件

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

代码示例6
# Program to read the entire file using read() function
file = open("python.txt", "r")
content = file.read()
print(content)
file.close()


# Program to read the entire file (absolute path) using read() function
file = open("C:/Projects/Tryouts/python.txt", "r")
content = file.read()
print(content)
file.close()