理解Python的With as语句

Posted 教程之父

tags:

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

简单的说,

 

with open(filepath, ‘wb‘) as file:

  file.write("something")

 

等价于:

 

file = open(filepath)

try:

  file.write("something", ‘wb‘)

finally:

  file.close()

 

总的来说with... as包含一个错误处理和一个文件关闭功能!

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

python with (as)语句

python with as的用法

python with as的用法

python with as的用法

如何用python 中with 用法

python with as的用法