Computer Science, asked by nishupandit3959, 1 month ago

Which of the following function call will cause an error while invoke the below function definition? def sum (a,b): a. sum (1) b. sum (a=1) c. sum (1,2) d. sum (a=1, b=2,3)

Answers

Answered by tejas23610
0

Explanation:

Check out this post, if you wish to test your comfort level with Python functions. They are one of the key ingredients of the Python programming ecosystem just like classes, exceptions, and file handling.

Similar questions