i am making a code that would help me figure out how many total vowels are in my sequence. My code looks like this
vowel = input("type something: abdc ")
print(*map(vowel.lower().count,"aeiou"))
This kind of code would get me an answer that looks like this "1 0 0 0 0".
This works fine, but the problem is that I want it to show me the total amount of vowels like, this "The amount of vowels in this string is ________. Could anyone help me edit my code to make it like this?