ValueError: Kapalı dosyada G / Ç işlemi


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)

Burada pbir sözlük wve cher ikisi de dizeler.

Dosyaya yazmaya çalıştığımda şu hatayı bildiriyor:

ValueError: I/O operation on closed file.

Yanıtlar:


157

Doğru girinti; senin forbeyanı içinde olması gerekir withbloğun:

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)

withBloğun dışında dosya kapatılır.

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

6

Aynı hata karıştırıldığında da ortaya çıkabilir : sekmeler + boşluklar.

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

1
Doğru, ama python'da onları karıştırırken her zaman durum budur?
Nebulosar
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.