Create a function that takes a number as an argument and returns n instances of the Fibonacci sequence as a list.
Fibonacci numbers: F(n) = F(n-1) + F(n-2) with F(0) = 0 and F(1) = 1. So the easy explanation is: The next element is the sum of the two previous elements.
If you want to read more about this sequence, take a look at the On-Line Encyclopedia of Integer Sequences. Fibonacci numbers are strongly related to the golden ratio.
fib_seq(4) ➞ [0, 1, 1, 2]
fib_seq(7) ➞ [0, 1, 1, 2, 3, 5, 8]
fib_seq(0) ➞ []
None.