logo CodeStepByStep logo

sum_of_range

Language/Type: Python cumulative algorithms

Write a function named sum_of_range function that accepts two integer parameters min and max and returns the sum of the integers from min through max inclusive. For example, the call of sum_of_range(3, 7) returns 3 + 4 + 5 + 6 + 7 or 25. If min is greater than max, return 0.

Function: Write a Python function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.