最终可以和python一起使用吗?

时间:2017-12-12 07:15:45

标签: python

可以最终与python中的一起使用吗?

当我添加try时,除了最后我的代码中没有出现任何错误。

1 个答案:

答案 0 :(得分:1)

当发生异常时,如果你没有处理异常,那将是脚本的结束,但是如果你需要在执行结束之前做一些其他的任务,那么finally子句的值就会起作用(要做)清理任务)

myfile = open('test_file.txt', 'w')
try:
    myfile.write(564)    # this will generate an exception
finally:
    myfile.close()       # this will executed after exception