代码示例:(标识:python_lambda_3)
python_lambda_3.py
x = lambda a, b, c : a + b + c
print(x(6, 7, 2))
运行结果: