递归 递归递归实现斐波那契数列 def recursion(n: int) -> int: if n < 2: return 1 return recursion(n - 1) + recursion(n - 2)