Code Python traduit en HTML:
mot=input("Entrez un mot :" )
while mot!="" :
    if mot[0] in "aeiouy" :
        print("ce mot commence par une voyelle" )
    elif mot[0] in "bcdfghjklmnpqrstvwxz" :
        print("ce mot commence par une consonne" )
    else:
        print(mot+" n'est pas un mot !" )
    mot=input("Encore un mot :" )

exemple.py v0.0.0