Python 學習筆記 - 上下文

來源:互聯網
上載者:User

標籤:python   上下文   

Python裡面有個特殊的模組叫做上下文模組,可以和with搭配來實現一些功能。


他的執行方式是使用者需要一個定義一個產生器的函數;with後面跟這個函數,他會執行yield之前的代碼;然後跳出來,執行with語句下面的代碼,然後再切換回函數,執行finally後面的代碼。


比如

import contextlib@contextlib.contextmanagerdef worker_state(state_list, worker_thread):    state_list.append(worker_thread)    try:        yield    finally:        state_list.remove(worker_thread)        print(state_list)        free_list = []current_thread = "alex"with worker_state(free_list, current_thread):    print(123)    print(456)    print(free_list)----------123456[‘alex‘][]


例2 如果with後面跟個as,我們可以通過yield傳遞一個對象到as上面,比如下面我就把一個列表對象傳給了tt

import contextlibimport socket@contextlib.contextmanagerdef test(num):    a=[]    a.append(num)    try:        yield a    finally:        num+=100        print(num)with test(20) as tt:    print(tt) ------------[20]120

本文出自 “麻婆豆腐” 部落格,請務必保留此出處http://beanxyz.blog.51cto.com/5570417/1870150

Python 學習筆記 - 上下文

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.