Saved Bookmarks
| 1. |
What will be the output of the following Python code? def add (num1, num2): sum = num1 + num2 sum = add(20,30) print(sum) a. 50 b. 0 c. Null d. None |
|
Answer» Answer is d. None |
|