What Will Be The Output Of The Following Python Codep Pre #651
What will be the output of the following Python code?</p> <pre><code class="language-python" line="1"> def sum(*args): '''Function returns the sum of all values''' r = 0 for i in args: r += i return r print(sum.__doc__) print(sum(1, 2, 3)) print(sum(1, 2, 3, 4, 5)) </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python Functions - Python Function - Quiz No.2.
What will be the output of the following Python code?
def sum(*args): '''Function returns the sum of all values''' r = 0 for i in args: r += i return r print(sum.__doc__) print(sum(1, 2, 3)) print(sum(1, 2, 3, 4, 5))
Function returns the sum of all values 6 15
6 100
123 12345
None of the mentioned