首页 > 编程语言 > 详细

Python利用上下文实现类似with open功能

时间:2017-09-10 00:04:32      阅读:318      评论:0      收藏:0      [点我收藏+]
import contextlib

@contextlib.contextmanager
def myopen(file, mode):
    f = open(file, mode, encoding="utf-8")
    try:
        yield f
    finally:
        f.close()
        
with myopen("01-thread.py", ‘r‘) as f:
    print(f.read())

        这里使用Python contextlib模块模拟了我们常用的with open功能,这里使用了contextlib.contextmanager装饰器,不能缺失!

本文出自 “戴柏阳的博客” 博客,请务必保留此出处http://daibaiyang119.blog.51cto.com/3145591/1964018

Python利用上下文实现类似with open功能

原文:http://daibaiyang119.blog.51cto.com/3145591/1964018

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!