Python graph the ratio between consecutive Fibonacci numbers

后端 未结 0 384
逝去的感伤
逝去的感伤 2021-01-03 19:25

Python. I have to create a program that will plot on a graph the ratio between consecutive Fibonacci numbers.

def fibo(n):
    if n == 1:
        return [1]
          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题