with与async with
摘要:with与async with 应用场景 文件的读写 数据库的读写操作 Flask的上下文管理 上下文管理协议:当使用with语句时,解释器会自动调用enter,exit class Sample: def __enter__(self): print('进入资源') return self def
阅读全文
posted @ 2021-04-21 18:00
posted @ 2021-04-21 18:00
posted @ 2021-04-19 15:33