Essentially a lambda is just an anonomyous function; no 'def' declaration is necessary, only the 'lambda' keyword. Functionally a lambda is just a function! Consider using lamdba to define smaller, non complex functions.
lambda x: x
functionally the same as
def example(x): return x
Use a filter fucntion and pass a lambda as the first parameter of the filter. The second parameter of filter will be the list_range. Your goal is to return a filtered list of only the even numbers in the list_range passed.
Refresher: filter function will take a first parameter of a function (in the case of this excercise a lambda function) and a second parameter of a collection. This lambda function will be run upon each index of the colleciton and if it returns True this index will be included in the final filter output (if False, it will be omitted and filter will move onto the next index of the given collection). Keep in mind, filter only includes values that return as True!