Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Python program to count the number of vowels in a string

In today’s tutorial, we are going to share a Python program to count the number of vowels in a string. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a Python program to count the number of vowels in a string.

Python program to count the number of vowels in a string code

Copy the below python program and execute it with the help of python compiler. At the end of this tutorial, We have shared the output of below program.
string=raw_input("Enter string:")
vowels=0
for i in string:
      if(i=='a' or i=='e' or i=='i' or i=='o' or i=='u' or i=='A' or i=='E' 
         or i=='I' or i=='O' or i=='U'):
            vowels=vowels+1
print("Number of vowels are:")
print(vowels)

Program Output:

Enter string: Hello world
Number of vowels are: 3

To increase your Python knowledge, practice all Python programs, here is a collection of 100+ Python problems with solutions.

The post Python program to count the number of vowels in a string appeared first on FreeWebMentor.



This post first appeared on Programming Blog Focused On Web Technologies, please read the originial post: here

Share the post

Python program to count the number of vowels in a string

×

Subscribe to Programming Blog Focused On Web Technologies

Get updates delivered right to your inbox!

Thank you for your subscription

×