Python面试:文件读写的异常处理

如果文件存在,读取文件内容并打印。
如果文件不存在,捕获异常,建立文件并写入内容。
最后关闭文件。

try:
    file = open("test.txt", "r")
    f = file.read()
    print(f)
except Exception as e:
    file = open("test.txt", "w")
    file.write("Learn hard play hard.\n")
finally: 
    file.close()

你可能感兴趣的:(Python,python,开发语言)