The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #595
l = [1, -2, -3, 4, 5]
def f1(x):
return x < -1
m1 = map(f1, l)
print(list(m1))
This code snippet returns a list which contains True if the corresponding element of the list is smaller than -1 , and False if the corresponding element is greater than -1 . (geeksforgeeks.org/python-lambda-anonymous-functions-filte...)
Question difficulty: 🔵🔵🔵🔵🔵
Similar questions: