合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
~~~python class Player: def __enter__(self): print('enter') return self def __exit__(self, exc_type, exc_val, exc_tb): if exc_tb: print("process exp") else: print("no exception") print('exit') return True with Player() as player: print('player with') print(player) ~~~