Question: THIS IS PYTHON - FIX CODE TO GET GREEN CHECKS on FEEDBACK Goal: Learn to use for loops to iterate over numbers. Assignment: Assume the

THIS IS PYTHON - FIX CODE TO GET GREEN CHECKS on FEEDBACK
Goal: Learn to use for loops to iterate over numbers.
Assignment: Assume the variable n has been assigned a positive integer. Write a code fragment that calculates the sum of the even numbers from 1 through n . Use a for loop in your code and assign the sum to a
variable named sum_even.n =10 # Example value for demonstrationsum_even =0for i in range(1, n +1):if i %2==0:sum_even += iprint("The sum of even numbers from 1 to", n,"is:", sum_even)
Question 2
Feedback:
The expected value for was 0 but actual is 30
THIS IS PYTHON - FIX CODE TO GET GREEN CHECKS on

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!