The anti-spam team at Fantasy Quest is doing text analysis on players' in-game chats.
Complete the count_vowels function. It takes a string and returns:
We are only interested in the 5 vowels: a, e, i, o, u, and their capitalized versions. Treat uppercase and lowercase vowels as separate. For example, "A" and "a" are not the same.
for char in text:
# do stuff
in the set of vowels:
my_new_set = set()
my_new_set = {"apple", "banana", "grape"}