Aprenent Python Recorrent el camí pas a pas

18 Loop for

def cuenta_vocales(s):
    '''(str) -> int
    Devuelve el número de vocales que tiene s.
    >>> cuenta_vocales ("videotutoriales.com")
    9
    >>> cuenta_vocales("MVP")
    0'''   
    num_vocales = 0
    for caracter in s:
        if caracter in "aeiouAEIOU":
            num_vocales = num_vocales +1
    return num_vocales

Quan ho apliquem:

>>> cuenta_vocales("videotutoriales")
8

Font: Videotutoriales 21