Q99
What will be the output of the following Python code? m=reduce(lambda x: x-3 in range(4, 10)) print(list(m))
A.
[1, 2, 3, 4, 5, 6, 7]
B.
No output
AnswerC.
[1, 2, 3, 4, 5, 6]
D.
Error
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board