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.
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)
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.
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)