본문 바로가기

Programming/Python

UnsupportedOperation : not readable

반응형
SMALL

https://doctorson0309.tistory.com/439

 

7. UnsupportedOperation : not readable

파이썬 프로그램을 실행하던 도중 아래와 같은 에러에 직면하였습니다. 에러명 UnsupportedOperation : not readable 해결방법 r+ 모드로 옵션을 변경합니다. 파일을 여는 것(open)과 관련된 함수를 찾아서,

doctorson0309.tistory.com

 

file = open('miss.txt', 'r', encoding='utf8')
반응형
LIST