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

Popular posts from this blog

Binary to Number converter.

Python Tkinter QR Code Generator

color guessing game with GUI using python