with异常

Posted zengsf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了with异常相关的知识,希望对你有一定的参考价值。

with 语句
  语法:
    with 表达式1 [as 变量1], 表达式2 [as 变量2], ...:
    语句块
作用:
  使用于对资源进行访问的场合,确保使用过程中不管是否发生异常都会执行必要的‘清理操作‘,并释放资源
  (如:文件使用后自动关闭,线程中锁的自动获取和释放等)
说明:
  执行表达式 as子句中的变量绑定生成的对象
  with语句并不改变异常的状态

try:
    f = open("../zengsf.txt")
    try:
        for l in f:
            x = int("aaaa")       #出现异常一样可以关闭文件
            print(l)
    finally:
        f.close()
        print("文件已经关闭")
except OSError:
    print("打开文件失败")

 










以上是关于with异常的主要内容,如果未能解决你的问题,请参考以下文章

[React Testing] Use Generated Data in Tests with tests-data-bot to Improve Test Maintainability(代码片段

add application window with unknown token XXX Unable to add window;is your activity is running?(代码片段

add application window with unknown token XXX Unable to add window;is your activity is running?(代码片段

Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段

A 8b Time-Interleaved Time-Domain ADC with Input-Independent Background Timing Skew Calibration(代码片段

leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段