보안을 그리다, 훈이

[Baekjoon/Python3] 10987번 모음의 개수 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 10987번 모음의 개수

HooNeee 2020. 12. 6. 18:46

[Baekjoon/Python3] 10987번 모음의 개수

 

www.acmicpc.net/problem/10987

 

10987번: 모음의 개수

알파벳 소문자로만 이루어진 단어가 주어진다. 이때, 모음(a, e, i, o, u)의 개수를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

moeum = ['a', 'e', 'i', 'o', 'u']
cnt = 0
string = input()
for i in string:
    if i in moeum:
        cnt += 1
print(cnt)
Comments