Python:如何读取和写入文件

原文: https://thepythonguru.com/python-how-to-read-and-write-files/


于 2020 年 1 月 7 日更新


在本文中,我们将学习如何在 Python 中读取和写入文件。

处理文件包括以下三个步骤:

  1. 打开文件
  2. 执行读或写操作
  3. 关闭文件

让我们详细了解每个步骤。

文件类型


有两种类型的文件:

  1. 文本文件
  2. 二进制文件

文本文件只是使用 utf-8,latin1 等编码存储字符序列的文件,而对于二进制文件,数据以与计算机内存相同的格式存储。

以下是一些文本和二进制文件示例:

文本文件:Python 源代码,HTML 文件,文本文件,降价文件等。

二进制文件:可执行文件,图像,音频等

重要的是要注意,在磁盘内部,两种类型的文件都以 1 和 0 的顺序存储。 唯一的区别是,当打开文本文件时,将使用与编码相同的编码方案对数据进行解码。但是,对于二进制文件,不会发生这种情况。

打开文件 - open()函数


open()内置函数用于打开文件。 其语法如下:

  1. open(filename, mode) -> file object

成功时,open()返回文件对象。 如果失败,它将引发IOError或它的子类。

参数 描述
filename 要打开的文件的绝对或相对路径。
mode (可选)模式是一个字符串,表示处理模式(即读取,写入,附加等)和文件类型。

以下是mode的可能值。

模式 描述
r 打开文件进行读取(默认)。
w 打开文件进行写入。
a 以附加模式打开文件,即在文件末尾添加新数据。
r+ 打开文件以进行读写
x 仅在尚不存在的情况下,打开文件进行写入。

我们还可以将tb附加到模式字符串以指示将要使用的文件的类型。 t用于文本文件,b用于二进制文件。 如果未指定,则默认为t

mode是可选的,如果未指定,则该文件将作为文本文件打开,仅供读取。

这意味着对open()的以下三个调用是等效的:

  1. # open file todo.md for reading in text mode
  2. open('todo.md')
  3. open('todo.md', 'r')
  4. open('todo.md', 'rt')

请注意,在读取文件之前,该文件必须已经存在,否则open()将引发FileNotFoundError异常。 但是,如果打开文件进行写入(使用war+之类的模式),Python 将自动为您创建文件。 如果文件已经存在,则其内容将被删除。 如果要防止这种情况,请以x模式打开文件。

关闭文件 - close()方法


处理完文件后,应将其关闭。 尽管程序结束时该文件会自动关闭,但是这样做仍然是一个好习惯。 无法在大型程序中关闭文件可能会出现问题,甚至可能导致程序崩溃。

要关闭文件,请调用文件对象的close()方法。 关闭文件将释放与其相关的资源,并将缓冲区中的数据刷新到磁盘。

文件指针


通过open()方法打开文件时。 操作系统将指向文件中字符的指针关联。 文件指针确定从何处进行读取和写入操作。 最初,文件指针指向文件的开头,并随着我们向文件读取和写入数据而前进。 在本文的后面,我们将看到如何确定文件指针的当前位置,并使用它来随机访问文件的各个部分。

使用read()readline()readlines()读取文件


要读取数据,文件对象提供以下方法:

方法 参数
read([n]) 从文件读取并返回n个字节或更少的字节(如果没有足够的字符读取)作为字符串。 如果未指定n,它将以字符串形式读取整个文件并将其返回。
readline() 读取并返回字符,直到以字符串形式到达行尾为止。
readlines() 读取并返回所有行作为字符串列表。

当到达文件末尾(EOF)时,read()readline()方法返回一个空字符串,而readlines()返回一个空列表([])。

这里有些例子:

poem.txt

  1. The caged bird sings
  2. with a fearful trill
  3. of things unknown
  4. but longed for still

示例 1 :使用read()

  1. >>>
  2. >>> f = open("poem.txt", "r")
  3. >>>
  4. >>> f.read(3) # read the first 3 characters
  5. 'The'
  6. >>>
  7. >>> f.read() # read the remaining characters in the file.
  8. ' caged bird sings\nwith a fearful trill\nof things unknown\nbut longed for still\n'
  9. >>>
  10. >>> f.read() # End of the file (EOF) is reached
  11. ''
  12. >>>
  13. >>> f.close()
  14. >>>

示例 2 :使用readline()

  1. >>>
  2. >>> f = open("poem.txt", "r")
  3. >>>
  4. >>> f.read(4) # read first 4 characters
  5. 'The '
  6. >>>
  7. >>> f.readline() # read until the end of the line is reached
  8. 'caged bird sings\n'
  9. >>>
  10. >>> f.readline() # read the second line
  11. 'with a fearful trill\n'
  12. >>>
  13. >>> f.readline() # read the third line
  14. 'of things unknown\n'
  15. >>>
  16. >>> f.readline() # read the fourth line
  17. 'but longed for still'
  18. >>>
  19. >>> f.readline() # EOF reached
  20. ''
  21. >>>
  22. >>> f.close()
  23. >>>

示例 3 :使用readlines()

  1. >>>
  2. >>> f = open("poem.txt", "r")
  3. >>>
  4. >>> f.readlines()
  5. ['The caged bird sings\n', 'with a fearful trill\n', 'of things unknown\n', 'but longed for still\n']
  6. >>>
  7. >>> f.readlines() # EOF reached
  8. []
  9. >>>
  10. >>> f.close()
  11. >>>

批量读取文件


read()(不带参数)和readlines()方法立即将所有数据读入内存。 因此,请勿使用它们读取大文件。

更好的方法是使用read()批量读取文件,或使用readline()逐行读取文件,如下所示:

示例:读取文件块

  1. >>>
  2. >>> f = open("poem.txt", "r")
  3. >>>
  4. >>> chunk = 200
  5. >>>
  6. >>> while True:
  7. ... data = f.read(chunk)
  8. ... if not data:
  9. ... break
  10. ... print(data)
  11. ...
  12. The caged bird sings
  13. with a fearful trill
  14. of things unknown
  15. but longed for still
  16. >>>

示例:逐行读取文件

  1. >>>
  2. >>> f = open("poem.txt", "r")
  3. >>>
  4. >>> while True:
  5. ... line = f.readline()
  6. ... if not line:
  7. ... break
  8. ... print(line)
  9. ...
  10. The caged bird sings
  11. with a fearful trill
  12. of things unknown
  13. but longed for still
  14. >>>

除了使用read()(带有参数)或readline()方法之外,您还可以使用文件对象一次遍历一行的文件内容。

  1. >>>
  2. >>> f = open("poem.txt", "r")
  3. >>>
  4. >>> for line in f:
  5. ... print(line, end="")
  6. ...
  7. The caged bird sings
  8. with a fearful trill
  9. of things unknown
  10. but longed for still
  11. >>>

该代码与前面的示例等效,但是更加简洁,易读且易于键入。

警告

提防readline()方法,如果您在打开没有任何换行符的大文件时遇到不幸,那么readline()并不比read()好(无参数)。 当您使用文件对象作为迭代器时,也是如此。

使用write()writelines()写入数据


为了写入数据,文件对象提供了以下两种方法:

方法 描述
write(s) 将字符串s写入文件并返回写入的数字字符。
writelines(s) 将序列s中的所有字符串写入文件。

以下是示例:

  1. >>>
  2. >>> f = open("poem_2.txt", "w")
  3. >>>
  4. >>> f.write("When I think about myself, ")
  5. 26
  6. >>> f.write("I almost laugh myself to death.")
  7. 31
  8. >>> f.close() # close the file and flush the data in the buffer to the disk
  9. >>>
  10. >>>
  11. >>> f = open("poem_2.txt", "r") # open the file for reading
  12. >>>
  13. >>> data = f.read() # read entire file
  14. >>>
  15. >>> data
  16. 'When I think about myself, I almost laugh myself to death.'
  17. >>>
  18. >>> print(data)
  19. When I think about myself, I almost laugh myself to death.
  20. >>>
  21. >>> f.close()
  22. >>>

请注意,与print()函数不同,write()方法不会在行尾添加换行符(\n)。 如果需要换行符,则必须手动添加它,如下所示:

  1. >>>
  2. >>>
  3. >>> f = open("poem_2.txt", "w")
  4. >>>
  5. >>> f.write("When I think about myself, \n") # notice newline
  6. 27
  7. >>> f.write("I almost laugh myself to death.\n") # notice newline
  8. 32
  9. >>>
  10. >>> f.close()
  11. >>>
  12. >>>
  13. >>> f = open("poem_2.txt", "r") # open the file again
  14. >>>
  15. >>> data = f.read() # read the entire file
  16. >>>
  17. >>> data
  18. 'When I think about myself, \nI almost laugh myself to death.\n'
  19. >>>
  20. >>> print(data)
  21. When I think about myself,
  22. I almost laugh myself to death.
  23. >>>
  24. >>>

您还可以使用print()函数将换行符附加到该行,如下所示:

  1. >>>
  2. >>> f = open("poem_2.txt", "w")
  3. >>>
  4. >>> print("When I think about myself, ", file=f)
  5. >>>
  6. >>> print("I almost laugh myself to death.", file=f)
  7. >>>
  8. >>> f.close()
  9. >>>
  10. >>>
  11. >>> f = open("poem_2.txt", "r") # open the file again
  12. >>>
  13. >>> data = f.read()
  14. >>>
  15. >>> data
  16. 'When I think about myself, \nI almost laugh myself to death.\n'
  17. >>>
  18. >>> print(data)
  19. When I think about myself,
  20. I almost laugh myself to death.
  21. >>>
  22. >>>

这是writelines()方法的示例。

  1. >>>
  2. >>> lines = [
  3. ... "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod",
  4. ... "tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,"
  5. ... "quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo",
  6. ... "consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse",
  7. ... "cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non",
  8. ... "proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
  9. ... ]
  10. >>>
  11. >>>
  12. >>> f = open("lorem.txt", "w")
  13. >>>
  14. >>> f.writelines(lines)
  15. >>>
  16. >>> f.close()
  17. >>>

writelines()方法在内部调用write()方法。

  1. def writelines(self, lines):
  2. self._checkClosed()
  3. for line in lines:
  4. self.write(line)

这是另一个以附加模式打开文件的示例。

  1. >>>
  2. >>> f = open("poem_2.txt", "a")
  3. >>>
  4. >>> f.write("\nAlone, all alone. Nobody, but nobody. Can make it out here alone.")
  5. 65
  6. >>> f.close()
  7. >>>
  8. >>> data = open("poem_2.txt").read()
  9. >>> data
  10. 'When I think about myself, \nI almost laugh myself to death.\n\nAlone, all alone. Nobody, but nobody. Can make it out here alone.'
  11. >>>
  12. >>> print(data)
  13. When I think about myself,
  14. I almost laugh myself to death.
  15. Alone, all alone. Nobody, but nobody. Can make it out here alone.
  16. >>>

假设文件poem_2.txt对于使用非常重要,并且我们不希望其被覆盖。 为了防止在x模式下打开文件

  1. >>>
  2. >>> f = open("poem_2.txt", "x")
  3. Traceback (most recent call last):
  4. File "<stdin>", line 1, in <module>
  5. FileExistsError: [Errno 17] File exists: 'poem.txt'
  6. >>>

如果x模式不存在,则仅打开该文件进行写入。

缓冲和刷新


缓冲是在将数据移到新位置之前临时存储数据的过程。

对于文件,数据不会立即写入磁盘,而是存储在缓冲存储器中。

这样做的基本原理是,将数据写入磁盘需要花费时间,而不是将数据写入物理内存。 想象一下,每当调用write()方法时一个程序正在写入数据。 这样的程序将非常慢。

当我们使用缓冲区时,仅当缓冲区已满或调用close()方法时,才将数据写入磁盘。 此过程称为刷新输出。 您也可以使用文件对象的flush()方法手动刷新输出。 请注意,flush()仅将缓冲的数据保存到磁盘。 它不会关闭文件。

open()方法提供了一个可选的第三个参数来控制缓冲区。 要了解更多信息,请访问官方文档。

读写二进制数据


通过将b附加到模式字符串来完成读写二进制文件。

在 Python 3 中,二进制数据使用称为bytes的特殊类型表示。

bytes类型表示介于 0 和 255 之间的数字的不可变序列。

让我们通过阅读poem.txt文件来创建诗歌的二进制版本。

  1. >>>
  2. >>> binary_poem = bytes(open("poem.txt").read(), encoding="utf-8")
  3. >>>
  4. >>> binary_poem
  5. b'The caged bird sings\nwith a fearful trill\nof things unknown\nbut longed for still'
  6. >>>
  7. >>>
  8. >>> binary_poem[0] # ASCII value of character T
  9. 84
  10. >>> binary_poem[1] # ASCII value of character h
  11. 104
  12. >>>

请注意,索引bytes对象将返回int

让我们将二进制诗写在一个新文件中。

  1. >>>
  2. >>> f = open("binary_poem", "wb")
  3. >>>
  4. >>> f.write(binary_poem)
  5. 80
  6. >>>
  7. >>> f.close()
  8. >>>

现在,我们的二进制诗已写入文件。 要读取它,请以rb模式打开文件。

  1. >>>
  2. >>> f = open("binary_poem", "rb")
  3. >>>
  4. >>> data = f.read()
  5. >>>
  6. >>> data
  7. b'The caged bird sings\nwith a fearful trill\nof things unknown\nbut longed for still'
  8. >>>
  9. >>> print(data)
  10. b'The caged bird sings\nwith a fearful trill\nof things unknown\nbut longed for still'
  11. >>>
  12. >>> f.close()
  13. >>>

重要的是要注意,在我们的情况下,二进制数据碰巧包含可打印的字符,例如字母,换行符等。但是,在大多数情况下并非如此。 这意味着对于二进制数据,由于文件中可能没有换行符,因此我们无法可靠地使用readline()和文件对象(作为迭代器)来读取文件的内容。 读取二进制数据的最佳方法是使用read()方法分块读取它。

  1. >>>
  2. >>> # Just as with text files, you can read (or write) binary files in chunks.
  3. >>>
  4. >>> f = open("binary_poem", "rb")
  5. >>>
  6. >>> chunk = 200
  7. >>>
  8. >>> while True:
  9. ... data = f.read(chunk)
  10. ... if not data:
  11. ... break
  12. ... print(data)
  13. ...
  14. b'The caged bird sings\nwith a fearful trill\nof things unknown\nbut longed for still'
  15. >>>
  16. >>>

使用fseek()ftell()的随机访问


在本文的前面,我们了解到打开文件时,系统将一个指针与它相关联,该指针确定从哪个位置进行读取或写入。

到目前为止,我们已经线性地读写文件。 但是也可以在特定位置进行读写。 为此,文件对象提供了以下两种方法:

方法 描述
tell() 返回文件指针的当前位置。
seek(offset, [whence=0]) 将文件指针移动到给定的offsetoffset引用字节计数,whence确定offset将相对于文件指针移动的位置。 whence的默认值为 0,这意味着offset将使文件指针从文件的开头移开。 如果wherece设置为12,则偏移量将分别将文件的指针从当前位置或文件的末尾移动。

现在让我们举一些例子。

  1. >>>
  2. >>> ###### binary poem at a glance #######
  3. >>>
  4. >>> for i in open("binary_poem", "rb"):
  5. ... print(i)
  6. ...
  7. b'The caged bird sings\n'
  8. b'with a fearful trill\n'
  9. b'of things unknown\n'
  10. b'but longed for still'
  11. >>>
  12. >>> f.close()
  13. >>>
  14. >>> #####################################
  15. >>>
  16. >>> f = open('binary_poem', 'rb') # open binary_poem file for reading
  17. >>>
  18. >>> f.tell() # initial position of the file pointer
  19. 0
  20. >>>
  21. >>> f.read(5) # read 5 bytes
  22. b'The c'
  23. >>>
  24. >>> f.tell()
  25. 5
  26. >>>

读取 5 个字符后,文件指针现在位于字符a(用字caged表示)。 因此,下一个读取(或写入)操作将从此处开始。

  1. >>>
  2. >>>
  3. >>> f.read()
  4. b'aged bird sings\nwith a fearful trill\nof things unknown\nbut longed for still'
  5. >>>
  6. >>> f.tell()
  7. 80
  8. >>>
  9. >>> f.read() # EOF reached
  10. b''
  11. >>>
  12. >>> f.tell()
  13. 80
  14. >>>

现在,我们已到达文件末尾。 此时,我们可以使用fseek()方法将文件指针后退到文件的开头,如下所示:

  1. >>>
  2. >>> f.seek(0) # rewind the file pointer to the beginning, same as seek(0, 0)
  3. 0
  4. >>>
  5. >>> f.tell()
  6. 0
  7. >>>

文件指针现在位于文件的开头。 从现在开始的所有读取和写入操作将从文件的开头再次进行。

  1. >>>
  2. >>> f.read(14) # read the first 14 characters
  3. b'The caged bird'
  4. >>>
  5. >>>
  6. >>> f.tell()
  7. 14
  8. >>>

要将文件指针从当前位置从 12 个字节向前移动,请按以下步骤操作:seek()

  1. >>>
  2. >>> f.seek(12, 1)
  3. 26
  4. >>>
  5. >>> f.tell()
  6. 26
  7. >>>
  8. >>>

文件指针现在位于字符a(在单词with之后),因此将从此处进行读取和写入操作。

  1. >>>
  2. >>>
  3. >>> f.read(15)
  4. b'a fearful trill'
  5. >>>
  6. >>>

我们还可以向后移动文件指针。 例如,以下对seek()的调用将文件指针从当前位置向后移 13 个字节。

  1. >>>
  2. >>> f.seek(-13, 1)
  3. 28
  4. >>>
  5. >>> f.tell()
  6. 28
  7. >>>
  8. >>> f.read(7)
  9. b'fearful'
  10. >>>

假设我们要读取文件的最后 16 个字节。 为此,将文件指针相对于文件末尾向后移 16 个字节。

  1. >>>
  2. >>> f.seek(-16, 2)
  3. 64
  4. >>>
  5. >>> f.read()
  6. b'longed for still'
  7. >>>

fseek()whence自变量的值在os模块中也定义为常量。

常量
0 SEEK_SET
1 SEEK_CUR
2 SEEK_END

with语句


使用with语句可使我们在完成处理后自动关闭文件。 其语法如下:

  1. with expression as variable:
  2. # do operations on file here.

必须像for循环一样,将with语句内的语句缩进相等,否则将引发SyntaxError异常。

这是一个例子:

  1. >>>
  2. >>> with open('poem.txt') as f:
  3. ... print(f.read()) # read the entire file
  4. ...
  5. The caged bird sings
  6. with a fearful trill
  7. of things unknown
  8. but longed for still
  9. >>>