보안을 그리다, 훈이

[Baekjoon/Python3] 10173번 니모를 찾아서 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 10173번 니모를 찾아서

HooNeee 2020. 12. 6. 03:26

[Baekjoon/Python3] 10173번 니모를 찾아서

 

www.acmicpc.net/problem/10173

 

10173번: 니모를 찾아서

여러 문장이 각 줄로 입력되며, 입력의 마지막에는 "EOI" 입력된다. 한 줄은 최대 80개의 글자로 이루어져 있다.

www.acmicpc.net

 

while True:
    string = input()
    if string == 'EOI':
        break
    string = string.lower()
    if 'nemo' in string:
        print('Found')
    else:
        print('Missing')
Comments