You have already completed these exercises!
Do you want to take them again?
You completed the Python Lambda Exercises from W3Schools.com
Share on:
What will be the result of the following code:x = lambda a, b : a - bprint(x(5, 3))
x = lambda a, b : a - bprint(x(5, 3))
15
8
3
2