Exibir vogais em uma string usando o loop
text = input('Enter text: ')
for char in text:
if char.lower() in 'aeiou':
print(char)
Deepak
text = input('Enter text: ')
for char in text:
if char.lower() in 'aeiou':
print(char)