def display (m,n,o,p): print (m+n+o+p) a=2 b=1 C-3 d=4 display (a,b,c,d) display (1,1,1,1) display (0,0,0,0) output of the function is what?
Answers
Answered by
0
Answer:
def display (m,n,o,p): print (m+n+o+p) a=2 b=1 C-3 d=4 display (a,b,c,d) display (1,1,1,1) display (0,0,0,0) output of the function is what?
Explanation:
def display (m,n,o,p): print (m+n+o+p) a=2 b=1 C-3 d=4 display (a,b,c,d) display (1,1,1,1) display (0,0,0,0) output of the function is what?
Similar questions