この演習を行っているときに、問題に遭遇しました。
from sys import argv
from os.path import exists
script, from_file, to_file = argv
print "Copying from %s to %s" % (from_file, to_file)
# we could do these two on one line too, how?
input = open(from_file)
indata = input.read()
print "The input file is %d bytes long" % len(indata)
print "Does the output file exist? %r" % exists(to_file)
print "Ready, hit RETURN to continue, CTRL-C to abort."
raw_input()
output = open(to_file, 'w')
output.write(indata)
print "Alright, all done."
output.close()
input.close()
行# we could do these two on one line too, how?
は私を混乱させているものです。私が思いついた唯一の答えは:
indata = open(from_file).read()
これは私が望んでいた方法で実行されましたが、削除する必要があります:
input.close()
入力変数が存在しないためです。では、どうすればこのクローズ操作を実行できますか?
これをどのように解決しますか?