What is the python “with” statement designed for?

后端 未结 10 1840
心在旅途
心在旅途 2020-11-21 07:52

I came across the Python with statement for the first time today. I\'ve been using Python lightly for several months and didn\'t even know of its existence! G

10条回答
  •  无人及你
    2020-11-21 08:02

    See PEP 343 - The 'with' statement, there is an example section at the end.

    ... new statement "with" to the Python language to make it possible to factor out standard uses of try/finally statements.

提交回复
热议问题