详解 Python 中的 with Open 语法
Python 编程语言具有用于处理文件的各种函数和语句。 with 语句和 open() 函数是这些语句和函数中的其中两个。
在本文中,你将学习如何使用 with 语句和 open() 函数在 Python 中处理文件。
open() 在 Python 中做了什么
要在 Python 中处理文件,你必须先打开文件。因此,open() 函数正如其名称所暗示的那样——它为你打开一个文件,以便你可以使用该文件。
要使用 open() 函数,首先要为其声明一个变量。 open() 函数最多需要 3 个参数——文件名、模式和编码。然后,你可以在 print 函数中指定要对文件执行的操作。
my_file = open("hello.txt", "r")
print(my_file.read())
# 输出:
# Hello world
# I hope you're doing well today
# This is a text file
那不是全部。open()
函数不会关闭文件,因此你还必须使用 close()
方法关闭文件。
因此,使用 open()
函数的正确方法如下所示:
my_file = open("hello.txt", "r")
print(my_file.read())
my_file.close()
# 输出:
# Hello world
# I hope you're doing well today
# This is a text file
读取模式是 Python 中默认的文件模式,所以如果不指定模式,上面的代码仍然可以正常工作:
my_file = open("hello.txt")
print(my_file.read())
my_file.close()
# 输出:
# Hello world
# I hope you're doing well today
# This is a text file
with 语句在 Python 中如何运行
with 语句与 open() 函数一起打开文件。
因此,你可以像这样重写我们在 open()
函数示例中使用的代码:
with open("hello.txt") as my_file:
print(my_file.read())
# 输出:
# Hello world
# I hope you're doing well today
# This is a text file
与你必须使用 close()
方法关闭文件的 open() 不同,with 语句会在你不告诉它的情况下为你关闭文件。
这是因为 with 语句在后台调用了 2 个内置方法——enter() 和 __exit()__。
__exit()__
方法在你指定的操作完成后关闭文件。
使用 write()
方法,你还可以写入文件,如下所示:
with open("hello.txt", "w") as my_file:
my_file.write("Hello world \n")
my_file.write("I hope you're doing well today \n")
my_file.write("This is a text file \n")
my_file.write("Have a nice time \n")
with open("hello.txt") as my_file:
print(my_file.read())
# 输出:
# Hello world
# I hope you're doing well today
# This is a text file
# Have a nice time
你还可以遍历文件并逐行打印文本:
with open("hello.txt", "w") as my_file:
my_file.write("Hello world \n")
my_file.write("I hope you're doing well today \n")
my_file.write("This is a text file \n")
my_file.write("Have a nice time \n")
with open("hello.txt") as my_file:
for line in my_file:
print(line)
# 输出:
# Hello world
# I hope you're doing well today
# This is a text file
# Have a nice time
总结
你可能想知道在 with 和 open() 的组合以及仅 open() 函数之间应该使用哪种方式来处理文件。
我建议你使用 with 和 open() 的组合,因为 with 语句会为你关闭文件,并且你可以编写更少的代码。
相关文章
Python for 循环中的下一项
发布时间:2023/04/26 浏览次数:179 分类:Python
-
本文讨论了 Python 中的 for 循环以及如何通过使用 for 循环和示例来跳过列表的第一个元素。
Python While 循环用户输入
发布时间:2023/04/26 浏览次数:148 分类:Python
-
我们可以在 while 循环中使用 input() 函数来输入数据,直到在 Python 中满足某个条件。
在 Python 中将整数转换为罗马数字
发布时间:2023/04/26 浏览次数:87 分类:Python
-
本篇文章将介绍在 Python 中将整数转换为罗马数字。以下是一个 Python 程序的实现,它将给定的整数转换为其等效的罗马数字。
在 Python 中将罗马数字转换为整数
发布时间:2023/04/26 浏览次数:144 分类:Python
-
本文讨论如何在 Python 中将罗马数字转换为整数。 我们将使用 Python if 语句来执行此操作。 我们还将探讨在 Python 中将罗马数字更改为整数的更多方法。
在 Python 中读取 gzip 文件
发布时间:2023/04/26 浏览次数:70 分类:Python
-
本篇文章强调了压缩文件的重要性,并演示了如何在 Python 中使用 gzip 进行压缩和解压缩。
在 Python 中锁定文件
发布时间:2023/04/26 浏览次数:141 分类:Python
-
本文解释了为什么在 Python 中锁定文件很重要。 这讨论了当两个进程在没有锁的情况下与共享资源交互时会发生什么的示例,为什么在放置锁之前知道文件状态很重要,等等
在 Python 中将 PDF 转换为文本
发布时间:2023/04/26 浏览次数:196 分类:Python
-
在本教程中,我们将学习如何使用 Python 使用 PyPDF2、Aspose 和 PDFminer 将 PDF 文档转换为文本文件。
在 Python 中创建临时文件
发布时间:2023/04/26 浏览次数:53 分类:Python
-
本文讲解了tempfile库函数的四个子函数:TemporaryFile、NamedTemporaryFile、mkstemp、TemporaryDirectory。 每个部分都提供了适当的程序,以简化对概念的理解。