Question: Use Python 3 for the following task: The Fibonnaci sequence is a sequence of integers, beginning with 1, 1, 2, 3, 5, ..., wherein each
Use Python 3 for the following task:

The Fibonnaci sequence is a sequence of integers, beginning with 1, 1, 2, 3, 5, ..., wherein each element is the sum of the previous two elements (except for the first two elements, which are defined as 1 and 1). Write a program to prompt a user to enter a number, n. Then, print the first n Fibonacci numbers. Note: We haven't yet discussed writing our own functions, so please do not submit a recursive-function solution. Example Output: Please enter a number: 7 1 2 5 13
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
