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
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
Math,
4 months ago
Hindi,
4 months ago
Physics,
4 months ago
Social Sciences,
9 months ago
English,
1 year ago