Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- misc
- CTF
- 문자열
- Network
- 수학
- MySQL
- 사칙연산
- 인코그니토
- Text
- Digital Forensics
- Forensics
- C
- Database
- 정렬
- 구현
- N0Named
- 백준
- SuNiNaTas
- 써니나타스
- HackCTF
- xcz.kr
- writeup
- cryptography
- Incognito
- 그리디 알고리즘
- Web
- wargame
- Web Hacking
- php
- Python
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 10173번 니모를 찾아서 본문
[Baekjoon/Python3] 10173번 니모를 찾아서
while True:
string = input()
if string == 'EOI':
break
string = string.lower()
if 'nemo' in string:
print('Found')
else:
print('Missing')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 10179번 쿠폰 (0) | 2020.12.06 |
---|---|
[Baekjoon/Python3] 10178번 할로윈의 사탕 (0) | 2020.12.06 |
[Baekjoon/Python3/Text] 10172번 개 (0) | 2020.12.06 |
[Baekjoon/Python3/Text] 10171번 고양이 (0) | 2020.12.06 |
[Baekjoon/Python3/Text] 10170번 NFC West vs North (0) | 2020.12.06 |
Comments