Def addem(x, y, z):
print(x+y+z)
Answers
Answered by
17
Answer:
Hi...
Your question is incomplete I feel..
Actually the code you have given has syntax error.. Also after correcting the error the program will not be executed further as the function addem is not called...
Please see the code given below...
EXPLANATION :
def addem(x, y, z) :
print (x+y+z)
#main
a=int(input("enter the number"))
b=int(input("enter the number ))
c=int(input("enter the number "))
addem(a, b, c)
Hope it helps you... ^_^ ^_^
Answered by
3
Answer:
none
Explanation:
there should be return instead of print
so the computer will return none by default
Similar questions