Python 的with语句

Posted

tags:

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

1、使用 with 语句操作文件对象
        
with open(r‘somefileName‘) as somefile:
        for line in somefile:
            print line
            # ...more code
这里使用了 with 语句,不管在处理文件过程中是否发生异常,都能保证 with 语句执行完毕后已经关闭了打开的文件句柄。如果使用传统的 try/finally 范式,则要使用类似如下代码:
2、try/finally 方式操作文件对象

somefile = open(r‘somefileName‘) try: for line in somefile: print line # ...more code finally: somefile.close()

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

python with语句有啥用

Python with语句

Python核心技术与实战——二一|巧用上下文管理器和with语句精简代码

如何编写python“with”语句?

Python中with的用法

python之with语句