python openファイルの読み込み
733 ワード
読み取りファイルopen()関数は、ファイルを開き、fileオブジェクトを返した後、関連する方法で読み書きを行います.
mode
open(name[, mode[, buffering]])
mode
'r' #open for reading (default) 。
'w' #open for writing, truncating the file first, 。 ,write , linux echo > filename, , 。
'x' #create a new file and open it for writing
'a' #open for writing, appending to the end of the file if it exists
'b' #binary mode,
't' #text mode (default)
'+' #open a disk file for updating (reading and writing)
'U' #universal newline mode (deprecated)
'ab' # 。```