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]