Question: python The following function named is_even is given and the function return True if the number (passed as an argument) is even, otherwise it will
The following function named is_even is given and the function return True if the number (passed as an argument) is even, otherwise it will return False. [You are not allowed to change/modify the is_even function] def is_even (a): if a%2=0: return True else: return False You need to call the is_even function with an argument but 15 times ( with different random numbers between 1 to 20). In the main function you need to show the number of even numbers. Make it clear. First, in the main function try to generate 15 random numbers range is between 1 and 20 and just after call the is_even function. Once is_even function return True or False, based on that you can calculate or count the number of even numbers
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
