×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Vowel count in String Assignment of South Point School List in Python
Consonant count in String - Python Language
2002    Arnab De    16/11/2020

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

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

softetechnologies
line=input("Enter a string")
count=0
line=line.lower()
for c in line:
    if(c.isalpha() and (c!="a" and c!="e" and  c!="i" and c!="o" and c!="u")):
        count=count + 1
print("Total Consonant : ",count)
softetechnologies
Vowel count in String Assignment of South Point School List in Python
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.
Leo Tolstoy
However diffcult life may seem, there is always something you can do, and succeed at. It matters that you don not just give up.
Leo Tolstoy
852
84.79
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     54748
25/06/2018     45861
01/01/2018     44073
28/06/2017     41616
02/08/2017     40713
01/08/2017     34712
06/07/2017     34488
15/05/2017     33704
11/09/2018     31265
14/07/2017     30571
softetechnologies