Question: 1/4 pts Partial Question 7 Match the examples in the following code with their definition: def greater_num(num1, num2): Returns the largest of two values. If

1/4 pts Partial Question 7 Match the examples in the following code with their definition: def greater_num(num1, num2): Returns the largest of two values. If the values are equal, this will return the second value. if num1 > num2: return num1 else: return num2 greater_num(5, 10) (num1, num2) parameters (5, 10) function name greater_num Docstring ""Returns the largest of two values.""" arguments
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
