adplus-dvertising
frame-decoration

Question

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: (b).No output

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the code shown?