A68703. 阅读下面代码,输出的结果是( )def f(n)
填空题
知识点
题目描述
阅读下面代码,输出的结果是( )
def f(n): if n <= 1: return n return f(n-2)*2 - f(n-1) + n print(f(5))