20.Python:with上下文管理

2021/6/25 12:56:48

本文主要是介绍20.Python:with上下文管理,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

# 文件对象又称文件句柄

# with open("a.txt", mode="rt") as f1:
#    res = f1.read()
#    print(res)

with open("a.txt", mode="rt") as f1, open("b.txt", mode="rt") as f2:

    res1 = f1.read()
    res2 = f2.read()

    print(res1)
    print(res2)

"""
换行的写法:
with open("a.txt", mode="rt") as f1,\
     open("b.txt", mode="rt") as f2:
"""


这篇关于20.Python:with上下文管理的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程