print('Hello world!')
texto= input("ingresa una palabra")
vocales="a,e,i,o,u,A,E,I,O,U"
contador=0
for letra in texto:
if letra in vocales:
contador +=1
print ("numero de vocales:",contador)
To embed this project on your website, copy the following code and paste it into your website's HTML: