find the errors in
total=0;
def sum(arg1,arg2):
total-arg1+arg2
print("Total:" total)
return total;
sum(10,20)
print("Total:”, total)
Answers
Answered by
0
Answer:
total = Arg1 + Arg2
I think this is the error
Similar questions