Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 python 中,设计一个名为 addSub 的函数,它将接收三个参数,数字 x,y,z 并返回 x+yz
addSub = lambda x, y, z: x+y-z