print('Bem vindo ao identificador de Vogais !')
def vowel_checker(text):
vowels = 'aeiou'
accountant = 0
for letra in text.lower():
if letra in vowels:
accountant += 1
return accountant
text = input('Digite o texto: ')
print(f'Quantidade de vogais {vowel_checker(text)}')