티스토리 뷰

반응형
Traceback (most recent call last):
  File "/file.py", line 29, in <module>
    lines = f.readline()
io.UnsupportedOperation: not readable

읽고 쓰기 옵션을 'w' -> 'r' 로 수정하면 io.UnsupportedOperation: not readable 오류 해결 가능.

f = open(work_path + "/file.data", 'w')

↓

f = open(work_path + "/file.data", 'r')

 

 

 

반응형
반응형