Computer Science, asked by rahulmulik, 6 months ago

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)​

Answers

Answered by princekumar07112
10

Explanation:

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).

Similar questions