組み込みオープン関数のモード a、a+、w、w+、r+ の違いは何ですか? 質問する

組み込みオープン関数のモード a、a+、w、w+、r+ の違いは何ですか? 質問する

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.

おすすめ記事