Computer Science, asked by dsrikanth1546, 1 month ago

write a python function to seperate vowels and consonants from given string​

Answers

Answered by veeratamizhan2004
0

Answer:

Declare and initialize two integer counter variable as int vowels = 0 and consonants = 0

The user asked to enter a string to count vowels and consonants.

call the str.lower () string function to change upper case lettersto lower case letters

Similar questions