Python 文件 i/o r+ 中光标的位置

问题描述 投票:0回答:1

在python3中以下语句不完整:

r+
Opens a file for both reading and writing. The file pointer placed at the 
beginning of the file.

这种模式写入文件不是在文件末尾,而读取是从文件开头开始吗?

python-3.x file-io
1个回答
0
投票

该说法正确。默认情况下写到最后将是

a+
,如果您在其他地方
.seek()
,它仍然取决于操作系统。请参阅打开

... 'a' 用于追加(在 some Unix 系统上,意味着所有写入都追加到文件末尾,无论当前的查找位置如何)。

© www.soinside.com 2019 - 2024. All rights reserved.