ValueError:閉じたファイルでのI / O操作


109
import csv    

with open('v.csv', 'w') as csvfile:
    cwriter = csv.writer(csvfile, delimiter=' ', quotechar='|', quoting=csv.QUOTE_MINIMAL)

for w, c in p.items():
    cwriter.writerow(w + c)

ここで、pは辞書でwcどちらも文字列です。

ファイルに書き込もうとすると、エラーが報告されます。

ValueError: I/O operation on closed file.

回答:


157

正しくインデントします。あなたのfor文は内にある必要がありますwithブロック:

import csv    

with open('v.csv', 'w') as csvfile:
    cwriter = csv.writer(csvfile, delimiter=' ', quotechar='|', quoting=csv.QUOTE_MINIMAL)

    for w, c in p.items():
        cwriter.writerow(w + c)

withブロックの外では、ファイルは閉じられます。

>>> with open('/tmp/1', 'w') as f:
...     print(f.closed)
... 
False
>>> print(f.closed)
True

6

タブ+スペースを混合すると、同じエラー発生する可能性があります。

with open('/foo', 'w') as f:
 (spaces OR  tab) print f       <-- success
 (spaces AND tab) print f       <-- fail

1
本当ですが、Pythonでそれらを正しく混ぜ合わせると、常にそうなりますか?
Nebulosar
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.