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.
(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
Get step-by-step solutions from verified subject matter experts
