91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python 裝飾器:contextlib

發布時間:2020-07-23 20:33:47 來源:網絡 閱讀:483 作者:虎皮喵的喵 欄目:編程語言

上下文環境:

開始信息

     |

中間輸出信息

     |

結束信息


上下文環境1:

#!/usr/bin/python
# -*- coding: utf-8 -*-

class Query(object):

    def __init__(self, name):
        self.name = name

    def __enter__(self):
        print('Begin')
        return self

    def __exit__(self, exc_type, exc_value, traceback):
        if exc_type:
            print('Error')
        else:
            print('End')

    def query(self):
        print('Query info about %s...' % self.name)
        
with Query('Bob') as q:
    q.query()
    
    
Query('Bob').query()

運行結果:

Begin
Query info about Bob...
End
Query info about Bob...


上下文環境2:@contextmanager

from contextlib import contextmanager

class Query(object):

    def __init__(self, name):
        self.name = name

    def query(self):
        print('Query info about %s...' % self.name)

@contextmanager
def create_query(name):
    print('Begin')
    q = Query(name)
    yield q
    print('End')
    
with create_query('Bob') as q:
    q.query()

運行結果:

Begin
Query info about Bob...
End


上下文環境3:@contextmanager 再次簡化

from contextlib import contextmanager

@contextmanager
def tag(name):
    print("<%s>" % name)
    yield
    print("</%s>" % name)

with tag("h2"):
    print("hello")
    print("world")

上述代碼執行結果為:

<h2>
hello
world
</h2>


沒有上下文環境:@closing  通過closing()來把該對象變為上下文對象,例如,用with語句使用urlopen():

from contextlib import closing
from urllib.request import urlopen

with closing(urlopen('https://www.baidu.com')) as page:
    for line in page:
        print(line)

上述代碼執行結果為:

b'<html>\r\n'
b'<head>\r\n'
b'\t<script>\r\n'
b'\t\tlocation.replace(location.href.replace("https://","http://"));\r\n'
b'\t</script>\r\n'
b'</head>\r\n'
b'<body>\r\n'
b'\t<noscript><meta http-equiv="refresh" content="0;url=http://www.baidu.com/"></noscript>\r\n'
b'</body>\r\n'
b'</html>'


不懂怎么驗證的closing

from contextlib import contextmanager

@contextmanager
def closing(thing):
    try:
        yield thing
    finally:
        thing.close()

上述代碼執行結果為:



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

当阳市| 合阳县| 隆德县| 衡水市| 南靖县| 华池县| 阿拉善左旗| 紫云| 枣强县| 大冶市| 宝山区| 子洲县| 深水埗区| 安西县| 宣威市| 牡丹江市| 鄂托克旗| 灵武市| 扎赉特旗| 德阳市| 永泰县| 呼图壁县| 汤原县| 许昌市| 微博| 井冈山市| 雅安市| 乌兰县| 西贡区| 阿合奇县| 根河市| 徐州市| 宝丰县| 儋州市| 长垣县| 肥城市| 吉水县| 吉林市| 贵德县| 曲阜市| 孙吴县|