728x90
반응형
SMALL
lst = ['a','e','i','o','u']
count = 0
s = list(input())
for i in range(len(s)):
if s[i] in lst :
count += 1
print(count)
728x90
반응형
LIST
'백준문제 > 브론즈 4' 카테고리의 다른 글
백준) 5596번 - python (0) | 2024.04.02 |
---|---|
백준) 9316번 - python (0) | 2024.04.01 |
백준) 5543번 - python (0) | 2024.03.30 |
백준) 5532번 - python (0) | 2024.03.29 |
백준) 5524번 - python (0) | 2024.03.28 |