DESCRIPTION: Return the number (count) of vowels in the given string. We will consider a, e, i, o, u as vowels for this Kata (but not y). The input string will only consist of lower case letters and/or spaces. def get_count(sentence): print(sentence) return (sentence.count('a'))+(sentence.count('e'))+(sentence.count('i'))+(sentence.count('o'))+(sentence.count('u')) def getCount(s): return sum(c ..