python with妙用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python with妙用相关的知识,希望对你有一定的参考价值。
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妙用的主要内容,如果未能解决你的问题,请参考以下文章