반응형
https://www.acmicpc.net/problem/1264
import re
p = re.compile('[aeiou]', re.I)
while True:
read = input()
if read == '#':
quit()
print(len(p.findall(read)))
단순히 주어진 문자열의 모음을 세주면 되는 문제.
대소문자 구별을 없애기 위해 re.I 옵션을 추가해주고,
findall 메서드를 통해 패턴에 맞는 개수를 카운트
댓글