Vowel Count.
Welcome vowel count code
This is vowel count code.
It is user input then user give value they find the vowel.
Input= input("Enter your vowels word:")
vowels="aeiouAEIOU"
Output=0
for Vow in Input:
if Vow.lower() in vowels:
Output +=1
print("The total vowel words are",Output)
Comments