Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

def evenslist1 if lenlist1 0 return 0 ... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Communications and Networking

Authors: Behrouz A. Forouzan

5th edition

73376221, 978-0073376226

More Books

Students also viewed these Mathematics questions