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

3.38 Rating (157 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

def evenslist1 if lenlist1 0 return 0 ... View full answer

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 Mathematics Questions!