Return the Sum of Two Numbers Python Programming
Problem:- Create a function that takes two numbers as arguments and returns their sum.
Example :-
addition(3, 2) --> 5
addition(-3, -6) --> -9
addition(7, 3) --> 10
Code:-
Comments
Post a Comment