Your question is Python Fibonacci Sequence Generator. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Implement a Python function that returns the first n numbers in the Fibonacci sequence as a list of integers. The sequence starts with 0, 1, and each later number is the sum of the previous two. If n is 0, return an empty list.
def fibonacci_generator(n):