Examveda

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

C. [1, 2, 3, 4, 5, 6]

D. Error

Answer: Option B


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python