In python I\'m trying to do the following to define a function:
count_letters(word) = count_vowels(word) + count_consonants(word)
But for
May be what you want to do is something like
def count_letters(word): return count_vowels(word) + count_consonants(word)