Computer Science, asked by TeeshaAhuja, 11 months ago

write a python program to count number of vowels in the string​

Answers

Answered by Aadhithya2403
8

mark as brainliest!!!!!!!

Attachments:
Answered by shubham71488
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