Question: How to make a add() function in python The function should generally take two ints and return their sum. For example, add(4, 5) should return
How to make a add() function in python The function should generally take two ints and return their sum. For example, add(4, 5) should return 9. Users of the function should also be able to call it like add(x=4, y=5). If only one argument is passed, 1 should be added. For example, add(5) or add(x=5) would both return 6
please help me.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
