What is the output of the following code:
square = lambda x: x**2
result = square(5)
print(result)
result = square(5)
print(result)
What is the output of the following code:square = lambda x: x**2 Correct Answer 25
result = square(5)
print(result)
মোঃ আরিফুল ইসলাম
Feb 20, 2025