Question: This question should be programmed in Python Language please. 2. Write a function named fibonacci(number) that outputs the first number of Fibonacci numbers. The first
This question should be programmed in Python Language please.

2. Write a function named fibonacci(number) that outputs the first number of Fibonacci numbers. The first Fibonacci number is 0, the second is 1, and each of the rest of the numbers are calculated by adding the previous two numbers together. Thus, in my output below, 13 is present because the previous two numbers (5 and 8) add up to 13 To submit: Copy/paste your code (function header, function body, and function call with 12 as the argument), then the output of the call. DO NOT mix the code or output in with the code and output from the other problem in this Lab! Keep the problems completely separate from each other! fibonacci(12) 13 21 34 89
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
