문제
해결
while True:
try:
print(input())
except EOFError:
break
EOFError : End Of File Error
더이상 읽을 내용도 없고 입력도 없을 때 발생.
- 파일의 끝에 도달하여 더이상 읽을 문자가 없을 때 발생 ->해결방법 : 파일의 끝을 확인해준다.
- 사용자가 예상치 못한 입력을 했을 때 발생
- 파일의 내용이 없는 경우 발생
-> 해결방법 : try-except문 사용하기.
참고
https://c-omealong.tistory.com/25
https://aia1235.tistory.com/11
https://gr-st-dev.tistory.com/1909#google_vignette
'프로그래밍' 카테고리의 다른 글
[Algorithm] 구현 - 왕실의 나이트 (0) | 2024.04.11 |
---|---|
[Spring] @Configuration과 싱글톤 (0) | 2024.04.05 |
[Baekjoon] 15552. 빠른 A+B - 파이썬 / readline() (0) | 2024.03.25 |
[운영체제] 프로세스의 상태 (Process State) (0) | 2021.03.25 |