ValueError: Operasi I / O pada file tertutup


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)

Di sini, pada kamus, wdan ckeduanya adalah string.

Ketika saya mencoba untuk menulis ke file itu melaporkan kesalahan:

ValueError: I/O operation on closed file.

Jawaban:


157

Indentasi dengan benar; forpernyataan Anda harus berada di dalam withblok:

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)

Di luar withblok, file ditutup.

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

6

Kesalahan yang sama dapat timbul dengan mencampur : tab + spasi.

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

1
Benar, tetapi ini selalu terjadi pada python saat mencampurnya, bukan?
Nebulosar
Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.