Programming Examples
Python program to generate in the Fibonacci series and store it in a list Then find the sum of all values
Write a program to generate in the Fibonacci series and store it in a list. Then find the sum of all values.
Output/ Explanation:
Enter no. of terms: 10
Fibonacci series upto 10 terms is : [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
The sum of Fibonacci series: 88