1.

What is the output of the code shown? m=reduce(lambda x: x-3 in range(4, 10)) print(list(m))

A. [1, 2, 3, 4, 5, 6, 7]
B. No output
C. [1, 2, 3, 4, 5, 6]
D. Error
Answer» C. [1, 2, 3, 4, 5, 6]


Discussion

No Comment Found