python输入第十个斐波那契数列,0,1,1,2,3,5,8,13,21,34
题目:python输入第十个斐波那契数列,0,1,1,2,3,5,8,13,21,34
思路:斐波那契数列定义 :
'''递归'''
def s(x):n = []if x ==1 or x == 2:return 1else:return s(x-2) +s(x-1)
s = s(6)
print(s)
拓展
- 另一种解法:字符串切片,切后两个数字,然后相加,赋予u, 将u添加到num中
- List item
结语 : 希望这篇文章能对你有所帮助,我也希望能很你共同进步,欢迎留言提问。谢谢!
python输入第十个斐波那契数列,0,1,1,2,3,5,8,13,21,34
题目:python输入第十个斐波那契数列,0,1,1,2,3,5,8,13,21,34
思路:斐波那契数列定义 :
'''递归'''
def s(x):n = []if x ==1 or x == 2:return 1else:return s(x-2) +s(x-1)
s = s(6)
print(s)
拓展
- 另一种解法:字符串切片,切后两个数字,然后相加,赋予u, 将u添加到num中
- List item
结语 : 希望这篇文章能对你有所帮助,我也希望能很你共同进步,欢迎留言提问。谢谢!