Question: Create a recursive function evens(list_1) that takes a list and returns the number of even integers in it. Recall that you can check to see

Create a recursive function evens(list_1) that takes a list and returns the number of even integers in it. Recall that you can check to see if n is even with n%2 == 0. For example,

>>> print(evens([5, 2, 9, 8, 9, 2, 6, 0, 9, 1])) 5 >>> print(evens([2, 4, 6, 8])) 4 >>> print(evens([1, 3, 5, 9])) 0 >>> print evens([]) 0

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!