1. ファイルを開き、すべての内容を読み取ります
file_object = open('thefile.txt')
try:
all_the_text = file_object.read( )
finally:
file_object.close( )
2.固定バイト
file_object = open('abinfile', 'rb')
try:
while True:
chunk = file_object.read(100)
chunk:
Break
do_something_with(chunk)
finally:
file_object 。 close( )
3. ファイルの 1 行を読み取ります
f = open("D:\test\BlueSoftSetup.log","r")
try:
while True:
line = f . Readline () l if line:
Print (line)
else:
finally:
f.close (); ')
バイナリファイルの書き込みoutput = open('data', 'wb')
書き込みファイルの追加output = open('data', 'w+')
データの書き込みfile_object = open( 'thefile.txt', 'w')
file_object.write(all_the_text)
file_object.close( )