Question: Please note that the instruction in this function is indented (empty space at the beginning of a line, in the example above it is 4

Please note that the instruction in this function is indented (empty space at the beginning of a line, in the example above it is 4 spaces before print instruction). Here is another example of a function named add_two that takes two parameters named number1 and number and prints their sum: def add_two(number1, number2): print(number1 + number2) Question: Write a function named solution that, given three parameters, number1, number2 and number 3, prints their sum. def solution ... Examples: 1. Given number 1 = 5, number2 = 3, number3 = 4, the function should print 12. 2. Given number 1 = 5, number2 = 2, number3 = 8, the function should print 15
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
