python with as的用法

來源:互聯網
上載者:User

標籤:usr   amp   關聯   方式   lin   檔案   擷取   most   with   

With語句是什嗎?
有一些任務,可能事先需要設定,事後做清理工作。對於這種情境,Python的with語句提供了一種非常方便的處理方式。一個很好的例子是檔案處理,你需要擷取一個檔案控制代碼,從檔案中讀取資料,然後關閉檔案控制代碼。
如果不用with語句,代碼如下:

file = open("/tmp/foo.txt")data = file.read()file.close()

 這裡有兩個問題。一是可能忘記關閉檔案控制代碼;二是檔案讀取資料發生異常,沒有進行任何處理。下面是處理異常的加強版本:

file = open("/tmp/foo.txt")try:    data = file.read()finally:    file.close()

雖然這段代碼運行良好,但是太冗長了。這時候就是with一展身手的時候了。除了有更優雅的文法,with還可以很好的處理上下文環境產生的異常。下面是with版本的代碼:

with open("/tmp/foo.txt") as file:    data = file.read()

with如何工作?

這看起來充滿魔法,但不僅僅是魔法,Python對with的處理還很聰明。基本思想是with所求值的對象必須有一個__enter__()方法,一個__exit__()方法。緊跟with後面的語句被求值後,返回對象的__enter__()方法被調用,這個方法的傳回值將被賦值給as後面的變數。當with後面的代碼塊全部被執行完之後,將調用前面返回對象的__exit__()方法。下面例子可以具體說明with如何工作:
#!/usr/bin/env python# with_example01.py class Sample:    def __enter__(self):        print "In __enter__()"        return "Foo"     def __exit__(self, type, value, trace):        print "In __exit__()" def get_sample():    return Sample() with get_sample() as sample:    print "sample:", sample

  運行代碼,輸出如下

In __enter__()sample: FooIn __exit__()

  正如你看到的,
1. __enter__()方法被執行
2. __enter__()方法返回的值 - 這個例子中是"Foo",賦值給變數‘sample‘
3. 執行代碼塊,列印變數"sample"的值為 "Foo"
4. __exit__()方法被調用
with真正強大之處是它可以處理異常。可能你已經注意到Sample類的__exit__方法有三個參數- val, type 和 trace。 這些參數在異常處理中相當有用。我們來改一下代碼,看看具體如何工作的。

#!/usr/bin/env python# with_example02.py class Sample:    def __enter__(self):        return self     def __exit__(self, type, value, trace):        print "type:", type        print "value:", value        print "trace:", trace     def do_something(self):        bar = 1/0        return bar + 10 with Sample() as sample:    sample.do_something()

  這個例子中,with後面的get_sample()變成了Sample()。這沒有任何關係,只要緊跟with後面的語句所返回的對象有__enter__()和__exit__()方法即可。此例中,Sample()的__enter__()方法返回新建立的Sample對象,並賦值給變數sample。
代碼執行後:

bash-3.2$ ./with_example02.pytype: <type ‘exceptions.ZeroDivisionError‘>value: integer division or modulo by zerotrace: <traceback object at 0x1004a8128>Traceback (most recent call last):  File "./with_example02.py", line 19, in <module>    sample.do_something()  File "./with_example02.py", line 15, in do_something    bar = 1/0ZeroDivisionError: integer division or modulo by zero

  實際上,在with後面的代碼塊拋出任何異常時,__exit__()方法被執行。正如例子所示,異常拋出時,與之關聯的type,value和stack trace傳給__exit__()方法,因此拋出的ZeroDivisionError異常被列印出來了。開發庫時,清理資源,關閉檔案等等操作,都可以放在__exit__方法當中。
因此,Python的with語句是提供一個有效機制,讓代碼更簡練,同時在異常產生時,清理工作更簡單。

python with as的用法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.