write a python program to count number of vowels in the string
Answers
Answered by
8
mark as brainliest!!!!!!!
Attachments:
Answered by
3
Answer:
str=input("Enter your string ")
cnvrt_lowr_case=str.lower()
vowels="aeiou"
for i in vowels:
count=cnvrt_lowr_case.count(i)
print("The number of",i,"is",count)
==>>See the image
Attachments:
Similar questions