Python 中 with 上下文管理器

Posted 守护@往昔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 中 with 上下文管理器相关的知识,希望对你有一定的参考价值。

with 读取文件内容

# 第一种:
# 1. 打开文件
one_file = open("test1.txt", encoding="utf-8")

# 2. 读写操作
# 使用read方法, 会将文件中的所有内容读取出来, 以字符串类型呈现
content = one_file.read()
print(content)      # 打印读取的内容

# 3. 关闭文件
one_file.close()

# 第二种:with 会自动关闭文件
with open("test1.txt", encoding="utf-8") as b:
    content = b.read()
    print(content)

 

with 可以进行复制文件,逗号隔开

  

with open("keyou_2019-07-03_21-54-52.png", mode="rb") as one_file, open("keyou.png", mode="wb") as two_file:
    # 2. 读写操作
    content = one_file.read()  # 读取第一个图片二进制数据
    two_file.write(content)  # 将读取的二进制数据, 写入到第二个文件中

 

*******请大家尊重原创,如要转载,请注明出处:转载自:https://www.cnblogs.com/shouhu/,谢谢!!******* 

以上是关于Python 中 with 上下文管理器的主要内容,如果未能解决你的问题,请参考以下文章

Python上下文管理器

Python札记6:with与上下文管理器

[新星计划] Python上下文管理器 | with关键字

[新星计划] Python上下文管理器 | with关键字

[新星计划] Python上下文管理器 | with关键字

浅谈Python中with(上下文管理器)的用法