Python io.UnsupportedOperation: not readable 오류 해결하기
Traceback (most recent call last): File "/file.py", line 29, in 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')
괴발개발
2021. 11. 10. 12:58
반응형