用with来打开文本文件

Posted zengsf

tags:

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

with open (text.txt) as f:
    for line in f.readlines():
        print(line)

这种方法的好处就是如果出了异常也会自动提示报错。

以上是关于用with来打开文本文件的主要内容,如果未能解决你的问题,请参考以下文章

Your build settings specify a provisioning profile with the UUID “bd4ae966-4d2c-4966-99eb"(示例代码

揭秘 Python 中的 with 关键字

软输入键盘隐藏编辑文本

python文件读写 with open()

sql里面 with...as 是啥意思啊?如何使用

Python文件右键没有“Edit with IDLE”的解决办法