Your question is Write Fibonacci Series Code. 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.
For a Virtusa engineering utility, generate the first n numbers in the Fibonacci series. The series begins with 0, 1, and each subsequent number is the sum of the previous two numbers.
Return the values in order as a Python list. For n = 0, return an empty list.
Implement fibonacci_series(n):
n, representing the number of Fibonacci values to generate.n Fibonacci numbers.F(0) = 0 and F(1) = 1.def fibonacci_series(n):