+ 1
Remove vowels
Enter a word from the user, remove all vowels and print the word without vowels.... Any language is welcomed... Bonus : count the number of vowels.. Happy coding guys :)
4 Respostas
+ 6
a=input("Enter text:"\n")
vowels=0
for i in a:
if i not in 'aeiou':
print(i,end='')
else:
vowels+=1
print("\nNumber of vowels:",vowels)
#Python easy-to-do solution