What is the output of this list comprehension?
res = [x for x in range(5) if x % 2 == 0] print(res)
[1, 3, 5]
[0, 2, 4]
[0, 1, 2, 3, 4]
[2, 4]
This question is part of this quiz :