Подсчитайте количество гласных (a, e, i, o, u) в строке s.
s
"hello"
2
"python"
1
"xyz"
0
def count_vowels(s: str) -> int:
Sign in to see submission history
Sign in to use AI Mentor
Your code output will appear here