Question: Whats the output of this code? def sum(x, y): return(x+y) print(sum(sum(1,2), sum(3,4)))
What’s the output of this code?
def sum(x, y):
return(x+y)
print(sum(sum(1,2), sum(3,4)))
Step by Step Solution
3.43 Rating (156 Votes )
There are 3 Steps involved in it
To find the output of the given code lets break down the steps 1 ... View full answer
Get step-by-step solutions from verified subject matter experts
