0
How I do that in python ?
Assume s is a string of lower case characters. Write a program that counts up the number of vowels contained in the string s. Valid vowels are: 'a', 'e', 'i', 'o', and 'u'. For example, if s = 'azcbobobegghakl', your program should print:
1 Respuesta
+ 6
print(len([_ for _ in s if _ in 'aeiou']))