1. Prints a list of Fibonacci sequences with n numbers entered from the user. (1 point)
Note: The Fibonacci Sequence is the series of numbers:0, 1, 1, 2, 3, 5, 8, 13, 21, ....,n
Every next number is found by adding up the two numbers before it.
The output should be:
Your selection (1 -> 3):
1
Enter a number: 10
OUTPUT
[0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
2. Print a triangle. (1 point)
The output should be:
+ 100%
Zoom
Close