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:-
                    
Solution Code

Note:- Never miss indentation. If you are stuck check the python documentation.

Comments

Popular posts from this blog

Moving to the End Python Programming

Alphabet Soup Python Programming

Characters in Shapes Python Programming