728x90
https://www.acmicpc.net/problem/1264
import sys
while True:
str = sys.stdin.readline().rstrip()
if str == '#':
break
alpha = [ 'a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U' ] #1
cnt = 0
for i in str:
if i in alpha:
cnt += 1
print(cnt)
#1 : 모음을 소문자만이 아니라 대문자도 포함해 줘야한다.
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 9093 파이썬(python) : 단어 뒤집기 (0) | 2022.07.18 |
---|---|
[백준] 9086 파이썬(python) : 문자열 (0) | 2022.07.18 |
[백준] 2744 파이썬(python) : 대소문자 바꾸기 (0) | 2022.07.18 |
[백준] 10808 파이썬(python) : 알파벳 개수 (0) | 2022.07.18 |
[백준] 2754 파이썬(python) : 학점계산 (0) | 2022.07.18 |