Question: (Python 3.8)- #Q6. Write a program to print sum of first 10 Natural numbers. Why does this code print 10 lines? x = 10 summation
(Python 3.8)- #Q6. Write a program to print sum of first 10 Natural numbers.
Why does this code print 10 lines? x = 10 summation = 0 while x >= 1: summation = summation + x x = x-1 print(summation)
While this one only prints the final answer? x = 10 summation = 0 while x >= 1: summation = summation + x x = x-1 print(summation)
What does the indentation do here?
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
