求:斐波那契数列的第n项 def he (n): if n < 3 : return 1 return he(n-1)+he(n-2)print(he(n)) posted on 2018-07-24 22:10 liangzhiwen 阅读( ...) 评论( ...) 编辑 收藏