1.

What will the out put of following code? def addem(x,y,z):print(x+y+z)def prod(x,y,z):print(x*y*z)a=addem(6,16,26)b=prod(2,3,6)print(a,b)​

Answer» TION:Most FUNCTIONS require arguments, values that control how the function does its JOB. ... It is as if X = toSquare is executed when square is called. ... def addEm(x, y, z): PRINT(x + y + z).


Discussion

No Comment Found