티스토리 뷰
반응형
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')
반응형
'괴발개발' 카테고리의 다른 글
[JAVA] com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON 오류 해결하기 (1) | 2021.12.03 |
---|---|
Python HTTP cURL response body 가져오기 (0) | 2021.11.10 |
[JAVA] 몽고디비 이중 배열 검색하기 (MongoDB Nested Array Search) (0) | 2021.07.22 |
[JAVA] IndexOutOfBoundsException 에러 해결 (0) | 2021.05.11 |
맥북 Air 2012 mid 셀프 배터리 수리하기 (0) | 2021.03.27 |
반응형