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):