Ai
1 Star 0 Fork 147

夏国秦/geekbangpython

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
with_test.py 378 Bytes
一键复制 编辑 原始数据 按行查看 历史
wilson_yin 提交于 2018-05-28 16:33 +08:00 . exercise & timegeekbang.com
class Testwith(object):
'''
with 包含了 __enter__ 和 __exit__ 方法
'''
def __enter__(self):
print('run now ')
def __exit__(self, exc_type, exc_val, exc_tb):
if exc_tb is None:
print('exit normal ')
else:
print('exit with exception')
with Testwith():
print('test')
raise NameError('Exception')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guoqinx/geekbangpython.git
git@gitee.com:guoqinx/geekbangpython.git
guoqinx
geekbangpython
geekbangpython
master

搜索帮助