Question: This is Python, Thank You! Write a function calledaddNumbers(start,end,divByN)which returns the sum of all numbers betweenstartandend(inclusive ofstartandend) that are divisible bydivByN. All the inputs are
This is Python, Thank You!
Write a function calledaddNumbers(start,end,divByN)whichreturnsthe sum of all numbers betweenstartandend(inclusive ofstartandend) that are divisible bydivByN. All the inputs are positive integers greater than 0.
Example:addNumbers(2,12,3)will return the sum of 3+6+9+12
Restriction:You must use awhileloop for this problem!!
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
