1.斐波那契数
def fib(depth,a1,a2): if depth == 10: return a1 a3=a1+a2 r=fib(depth+1,a2,a3) return rret=fib(1,0,1) print(ret)