Python Program to count Vowels and Consonants in String

python program to Count Vowels And Consonants In String

In this tutorial, we are going to learn writing python programming to count the number of vowels (‘a’, ‘e’, ‘i’, ‘o’, ‘u’) and consonants (any alphabet other than vowels) in a string. Problem Statement For any input string, we have to count the number of vowels that appear and the number of consonants that appear. … Read more