Home [Python] 백준 11719번 : 그대로 출력하기
Post
Cancel

[Python] 백준 11719번 : 그대로 출력하기

Problem

https://www.acmicpc.net/problem/11718

Solution

이 문제는 파일의 끝(EOF)을 판단할 수 있는지를 묻는 문제이다. 파일의 끝은 Ctrl + D로 만들 수 있다. 파이썬의 input함수의 경우 EOF를 만나게 되면 EOFError를 발생시키기 때문에 try-except 문을 통해 EOFError를 찾아서 끝낼 수 있다.

code

1
2
3
4
5
while True:
    try:
        print(input())
    except EOFError:
        break

Ref.

출제 의도

This post is licensed under CC BY 4.0 by the author.

[Python] 백준 1931번 : 회의실 배정

[Python] 백준 11721번 : 열 개씩 끊어 출력하기