在python3中以下语句不完整:
r+
Opens a file for both reading and writing. The file pointer placed at the
beginning of the file.
这种模式写入文件不是在文件末尾,而读取是从文件开头开始吗?
该说法正确。默认情况下写到最后将是
a+
,如果您在其他地方.seek()
,它仍然取决于操作系统。请参阅打开:
... 'a' 用于追加(在 some Unix 系统上,意味着所有写入都追加到文件末尾,无论当前的查找位置如何)。