mon code source j 'ai python 3,7 chez moi :
#coding:utf-8
saisie = input("Ecrivez un mot ou une phrase : ")
saisie = saisie.lower()
nbVoyelle = 0
nbConsonne = 0
voyelles ="aeiouy"
consonnes = "bcdfghjklmnpqrstvwxz"
for l in saisie :
for v in voyelles :
if l == v :
nbVoyelle += 1 # incrémentation
break # on sort de la boucle
for c in consonnes :
if l == c :
nbConsonne += 1
break
#affichage des valeurs
print("consonnes : "+str(nbConsonne)+" , voyelles : "+str(nbVoyelle)+" .")