본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]10987번 모음의 개수

by 현장 2021. 6. 23.

-코드

c = input()
cnt = 0
for i in c:
    if i == 'a' or i == 'e' or i == 'i' or i == 'o' or i == 'u':
        cnt += 1
print(cnt)