Question: Use python. Make sure test cases work for all cases Function name: count evens Parameters: list Returns: int Description: Write a function that takes in
Function name: count evens Parameters: list Returns: int Description: Write a function that takes in a list of ints and floats. Use recursion to count how many even numbers are in the list. Return an int of the count of even numbers in the list. If an empty list is passed in, return O. You cannot use any loops, and you must use recursion. Test Cases >> count_evens([22,3,9,10.0,22,4]) 4 >count evens([31) count evens (I-2, -7, 3, 5, 4])
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
