Akhil Narayanan Nair home

Python - Function Anonymous

================

x = lambda a : a + 10

print(x(5))

y = lambda a, b : a * b

print(y(5, 6))