What will be the output of the following Python code?
m=reduce(lambda x: x-3 in range(4, 10))
print(list(m))
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: Option B

Join The Discussion