Python組み込みの開ける関数においてw
、、、、、およびモード間の正確な違いは何a
ですか?w+
a+
r+
特に、ドキュメントでは、これらすべてがファイルへの書き込みを許可することを示唆しており、具体的には「追加」、「書き込み」、「更新」のためにファイルを開くと述べていますが、これらの用語の意味は定義されていません。
ベストアンサー1
オープニングモードは、C 標準ライブラリ関数のオープニングモードとまったく同じですfopen()
。
BSDfopen
マニュアルページ以下のように定義します。
The argument mode points to a string beginning with one of the following
sequences (Additional characters may follow these sequences.):
``r'' Open text file for reading. The stream is positioned at the
beginning of the file.
``r+'' Open for reading and writing. The stream is positioned at the
beginning of the file.
``w'' Truncate file to zero length or create text file for writing.
The stream is positioned at the beginning of the file.
``w+'' Open for reading and writing. The file is created if it does not
exist, otherwise it is truncated. The stream is positioned at
the beginning of the file.
``a'' Open for writing. The file is created if it does not exist. The
stream is positioned at the end of the file. Subsequent writes
to the file will always end up at the then current end of file,
irrespective of any intervening fseek(3) or similar.
``a+'' Open for reading and writing. The file is created if it does not
exist. The stream is positioned at the end of the file. Subse-
quent writes to the file will always end up at the then current
end of file, irrespective of any intervening fseek(3) or similar.