Part 10 (5 points, coding task)
Do the following tasks in this part.
-
Define an object of the class
My_Fibcalledmy_fib. -
Set
f0 = 0,f1 = 1,indices = range(10). -
Call method
my_fib.plot_fib(f0, f1, indices).
Do the following tasks in this part.
Define an object of the class My_Fib called my_fib.
Set f0 = 0, f1 = 1, indices = range(10).
Call method my_fib.plot_fib(f0, f1, indices).
### WRITE YOUR SOLUTION HERE ###
my_fib = My_Fib()
f0 = 0
f1 = 1
indices = range(10)
my_fib.plot_fib(f0, f1, indices)
""" END OF THIS PART """