Answer:
Step-by-step explanation:
You do not need the filter function to get that output, just the map function. You will however need a function that checks each element and returns Even or Odd if they are or not. The following code gives the output that you want as can be seen in the picture below.
def checkEven(s):
if s % 2 == 0:
return "Even"
else:
return "Odd"
l = [10, 11, 0, 2]
print(list(map(checkEven, l)))