728x90
반응형
단순 문자열 문제이다.
vowels = ['A', 'E', 'I', 'O', 'U', 'a', 'e', 'i', 'o', 'u']
for _ in range(int(input())):
s = input()
c = v = 0
for t in s:
if t in vowels:
v += 1
elif t.isalpha():
c += 1
print(c, v)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 21335번 Another Eruption(python) (0) | 2021.04.04 |
---|---|
백준 알고리즘 11367번 Report Card Time(python) (0) | 2021.03.25 |
백준 알고리즘 11104번 Fridge of Your Dreams(python) (0) | 2021.03.25 |
백준 알고리즘 17173번 배수들의 합(python) (0) | 2021.03.25 |
백준 알고리즘 4999번 아!(python) (0) | 2021.03.25 |