Question: Problem 1 Create a Python function called sumofEvens which takes one argument, an integer greater than or equal to 1, and returns the result of

Problem 1 Create a Python function called sumofEvens which takes one argument, an integer greater than or equal to 1, and returns the result of adding the even integers between 1 and the value of the given argument (inclusive). This function does not print. You may assume that the argument is valid. Here are some examples of how your function should behave: >>sumofEvens (1) 0 >sumofEvens (2) 2 >sumofEvens (3) 2 >sumOfEvens (4) 6 >sumotEvens (5) 6 >sumofEvens(6) 12 >sumofEvens (101) 2550 >sumofEvens (102) 2652
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
