✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What does the following recursive function do? (The input is a list of numbers).
def recfun4(L): if len(L) > 0: return L[0] + recfun4(L[1:]) else: return 0