Hard
What is the return value of the following function ?
def f():
a = [x for x in range(10)]
return list(filter(lambda x: x%3, a))
Author: ThéoStatus: PublishedQuestion passed 1366 times
Edit
Similar QuestionsMore questions about Python
What is the return value of the following function ?
def f():
a = [x for x in range(10)]
return list(filter(lambda x: x%3, a))