728x90
반응형
단순 문자열 문제이다.
for _ in range(int(input())):
s = input().rstrip()
cnt = 0
for c in s:
if c in "aeiou":
cnt += 1
print(f"The number of vowels in {s} is {cnt}.")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 16917번 양념 반 후라이드 반(python) (0) | 2021.03.01 |
---|---|
백준 알고리즘 16504번 종이접기(python) (0) | 2021.03.01 |
백준 알고리즘 16503번 괄호 없는 사칙연산(python) (0) | 2021.03.01 |
백준 알고리즘 20976번 2 番目に大きい整数(python) (0) | 2021.03.01 |
백준 알고리즘 10821번 정수의 개수(python) (0) | 2021.02.28 |