In python I'm trying to do the following to define a function:
count_letters(word) = count_vowels(word) + count_consonants(word)
But for some reason, it is wrong. I'm getting this error:
SyntaxError: can't assign to function call
How can I fix it?
Thank you