try:
f = open("file.txt", "r")
try:
string = f.read()
line = f.readline()
lines = f.readlines()
finally:
f.close()
except IOError:
pass
try:
f = open("file.txt", "w")
try:
f.write('blah') # Write a string to a file
f.writelines(lines) # Write a sequence of strings to a file
finally:
f.close()
except IOError:
pass
やあ、
これはファイルの読み取りと書き込みができるモードですが、ファイルを一度開いて、Pythonで読み取りと書き込みの両方の操作を実行したいです