Your question is Fibonacci Series Function. 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.
Zen Technologies simulation software needs a predictable numeric training sequence. Write a function that returns the first n numbers in the Fibonacci sequence, starting with 0 and 1.
Each subsequent number is the sum of the previous two numbers. Return the sequence as a Python list. If n is 0, return an empty list.
n, representing the number of Fibonacci values to generate.n integers in Fibonacci order.0, 1, 1, 2, 3, 5, ....def fibonacci_series(n):