Learn
Awesome! Now let’s practice filtering a list.
Instructions
1.
Define a function called purify
that takes in a list of numbers, removes all odd numbers in the list, and return
s the result. For example, purify([1,2,3])
should return [2]
.
Do not directly modify the list you are given as input; instead, return a new list with only the even numbers.
Take this course for free
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.