Spot the errors and rewrite the corrected codes.
total=0;
def sum(arg1, arg2):
total=arg1+arg2
print(“Total:”, total)
return total
sum (10,20)
print(“Total:” total)
Answer:
Corrected code:
total=
0
def
sum
(arg1,arg2):
total=arg1+arg2
print(
"Total:"
,total)
return
total
sum(
10
,
20
)
print("Total:",total)