본문 바로가기
python-algorithm

[백준] 1264

by 무적김두칠 2021. 1. 6.

1
2
3
4
5
6
7
8
moum='aeiou'
while True:
    s = input().lower()
    if s=='#': exit()
    cnt=0
    for i in s:
        if i in moum : cnt+=1
    print(cnt)
cs

문자열 중에 대문자가 있으면 인식을 못하므로
python 내장 함수 lower()을 이용해서 문자열 전체를 소문자화 시킵니다.

반응형

'python-algorithm' 카테고리의 다른 글

[백준] 1392  (0) 2021.01.06
[백준] 1350  (0) 2021.01.06
[백준] 1233  (0) 2021.01.05
[백준] 1225  (0) 2021.01.05
[백준] 20053  (0) 2021.01.05

댓글