Question: using python (8 pts) Write a function called keep_em () that takes a list of names and a list of Booleans of the same length.

using python
using python (8 pts) Write a function called keep_em () that takes

(8 pts) Write a function called keep_em () that takes a list of names and a list of Booleans of the same length. This function strips out the names for which there is a corresponding value False in the Boolean list. Assumptions: The length of the list of names is not longer than the list of Booleans. Signature: def keep em (names, keepers): \#your code here \# return new_list Examples: keep_em (['Ana', 'Buster', 'Carla', 'Demos', "Estaban; , Farhad', 'Gerri', 'Herrah', 'Irma'], [True, True, False, False, False, True, True, True, False]) ['Ana', 'Buster', 'Farhad', 'Gerri', 'Herrah

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!