python
EOFError
언어 수집가
2021. 2. 6. 23:55
while True:
try:
print(input())
except EOFError:
break
입력을 받아야 하는 부분에 아무 것도 입력되지 않았을 때 발생하는 에러!