Python的with open file as 自我了解解释
Posted Tom-Li
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python的with open file as 自我了解解释相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python
# -*- coding:utf-8 -*-
with open (‘1.txt‘) as f1:
f1.line = f1.readlines()
print (f1.line)
with open(‘2.txt‘) as f2:
f2.line = f2.readlines()
print (f2.line)
#写在一块 中间用,分开,注意最后:结尾, 类似循环语句的结尾
with open (‘1.txt‘) as f1,open(‘2.txt‘) as f2:
f1.line = f1.readlines()
f2.line = f2.readlines()
print (f1.line)
print (f2.line)
以上是关于Python的with open file as 自我了解解释的主要内容,如果未能解决你的问题,请参考以下文章
区别 |Python的 open() 和with open() as
23.Python文件I/O详解open()函数&上下文管理器with...as