×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Custom Series Print Consonant count in String
Vowel count in String - Python Language
1191    Arnab De    16/11/2020

Write a Program in Python to accept a string from the user and count the vowel in it.

In this program, we should accept a string using input() method. Now read the line character by character and count the vowel character (a, e, i, o, u) in it.

softetechnologies
line=input("Enter a string")
count=0
line=line.lower()
for c in line:
    if(c=="a" or c=="e" or  c=="i" or c=="o" or c=="u"):
        count=count + 1
print("Total vowels : ",count)

Write a Program in Python to accept a string from the user and count the vowel in it which are in upper case.

In this program, we should accept a string using input() method. Now read the line character by character and count the vowel character (A, E, I, O, U) in it.

softetechnologies
line=input("Enter a string")
count=0
line=line.lower()
for c in line:
    if(c=="A" or c=="E" or  c=="I" or c=="O" or c=="U"):
        count=count + 1
print("Total vowels : ",count)
Custom Series Print Consonant count in String
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Rabindranath Tagore
Don't limit a child to your own learning, for he was born in another time.
Rabindranath Tagore
6034
62.02
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     45777
25/06/2018     37973
01/01/2018     37712
28/06/2017     35686
02/08/2017     34344
01/08/2017     28665
06/07/2017     28417
15/05/2017     27966
14/07/2017     23775
11/09/2018     22612
softetechnologies