码迷,mamicode.com
首页 > 其他好文 > 详细

关于 with 语句

时间:2019-12-30 11:50:32      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:return   spl   with   操作   display   With语句   bsp   exit   play   

class C(object):
    def __enter__(self):
        print(‘jinru‘)
        return self


    def __exit__(self, exc_type, exc_val, exc_tb):
        print(‘chuqu‘)


with C() as f:
    print(f)
    print(123)

with语句  在内部有一个 __enter__  和  __exit__  的双下方法 先执行 __enter__ 在做操作 再执行__exit__   退出

 

关于 with 语句

标签:return   spl   with   操作   display   With语句   bsp   exit   play   

原文地址:https://www.cnblogs.com/a438842265/p/12118439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!