码迷,mamicode.com
首页 > 编程语言 > 详细

python with妙用

时间:2017-08-26 19:49:52      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:val   def   __enter__   pre   hello   class   color   return   elf   

class aa():
    def bb(self):
        print("hhhh")
        return "hello world"

    def __enter__(self): # 必须有__enter__
        print("enter")
        return self

    def cc(self):
        print("www")

    def __exit__(self, exc_type, exc_val, exc_tb): # 必须有结束__exit__
        print("exit")

def ll():
    with aa() as a:
        return a.bb()

res = ll()
print(res)

 

结果:

enter
hhhh
exit
hello world

 

python with妙用

标签:val   def   __enter__   pre   hello   class   color   return   elf   

原文地址:http://www.cnblogs.com/renfanzi/p/7436016.html

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