处理问题集 - 这是Q:
两个函数定义保存在同一个文件中: 函数count_vowels有一个参数,一个单词,并返回该单词中的元音数。 函数count_consonants有一个参数,一个单词,并返回该单词中辅音的数量。 要确定单词中的字母数,请为以下函数编写一行主体,该函数同时调用count_vowels和count_consonants:
def count_letters(word):
""" (str) -> int
Return the number of letters in word.
>>> count_letters('hello')
5
>>> count_letters('bonjour')
7
"""
# Write the one-line function body that belongs here.
我的回答:
return count_letters(count_vowels() + count_consonants())
错误。为什么呢?