Question: How can the code be modified to sum the Fibonacci sequence instead of printing it ? ( : 1 ) Use print ( a +

How can the code be modified to sum the Fibonacci sequence instead of printing it?(: 1) Use print(a + b) inside the loop. Replace print(a) with sum(a, b). Add a variable to store the sum and update it inside the loop. Use a += b in place of a, b = b, a + b.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!