I am new to Python and to these forums.
My question is: How can I create a list of n Fibonacci numbers in Python?
So far, I have a function that gives the nth Fibonacci number, but I want to have a list of the first n Fib. numbers for future work.
For example:
fib(8) -> [0,1,1,2,3,5,8,13]