码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-09-10 00:17:11      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:python   with open   python上下文   contextlib   

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功能

标签:python   with open   python上下文   contextlib   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!