Files
learning/python/функции/lambda.py
2022-05-06 00:49:26 +03:00

2 lines
44 B
Python
Executable File

mult = lambda x, y: x * y
print(mult(2, 5))