python - with

with

用法很像 java 中的 try(){} 代码块,调用对象之后,会自动执行资源释放函数。

在 python 中,要使用 with 语句,需要实现两个特殊方法:__enter____exit__

比如:

class Session:
    def __enter__(self):
        print("Entering context")
        return self  # 返回上下文管理器对象本身
    
    def __exit__(self, exc_type, exc_val, exc_tb):
        print("Exiting context")
        return False  # 在这个函数写释放资源的逻辑,默认返回False,表示不抑制异常

# 使用 with 语句调用上下文管理器
wite Session as session:
	// to sth.

打开文件

在 python 中,使用 with 语句来打开文件是一种简洁且安全的方式,它可以确保文件在使用后被正确关闭。

以下是使用with语句打开文件的基本格式:

with open('filename', 'mode') as file:
    # 在这里进行文件操作

其中 filename 是文件名,mode 是打开文件的模式,例如 'r' 代表读模式,'w' 代表写模式,'a' 代表追加模式等。

例如,要以读模式打开一个文本文件并读取内容:

with open('example.txt', 'r') as file:
    content = file.read()
    print(content)

要以写模式打开一个文本文件并写入内容:

with open('example.txt', 'w') as file:
    file.write('Hello, World!')

posted on 2024-12-05 17:13  疯狂的妞妞  阅读(2)  评论(0编辑  收藏  举报

导航