Vowel count

Report a typo

You have a predefined string vowels that contains all letters designating vowel sounds. Write a program that counts the number of vowels in the variable string and prints this number.

Write a program in Python 3
string = "red yellow fox bite orange goose beeeeeeeeeeep"
vowels = 'aeiou'
___

Create a free account to access the full topic