Afficher les voyelles dans une chaîne en utilisant pour la boucle

text = input('Enter text: ')

for char in text:
    if char.lower() in 'aeiou':
        print(char)
Deepak