-6

在 python 中,设计一个名为 addSub 的函数,它将接收三个参数,数字 x,y,z 并返回 x+yz

4

1 回答 1

2
addSub = lambda x, y, z: x+y-z
于 2013-01-31T06:39:57.473 回答