代码示例:(标识:python_lambda_2)
python_lambda_2.py
x = lambda a, b : a * b
print(x(2, 5))
运行结果: