Question: Make a python code. Write a function named max that accepts two integer values asarguments and returns the value that is the greater of the

Make a python code.

Write a function named max that accepts two integer values asarguments and returns the value that is the greater of the two. Forexample, if 7 and 12 are passed as arguments to the function, thefunction should return 12. Use the function in a program thatprompts the user to enter two integer values. The program shoulddisplay the value that is the greater of the two. Write the programas a loop that continues to prompt for two numbers, outputs themaximum, and then goes back and prompts again

Here’s an example of program use

Input the first number: 10

Input the second number: 5

The maximum value is 10

Run again? yes

Input the first number: -10

Input the second number: -5

The maximum value is -5

Run again? no

Function max():

Obtain two numbers as input parameters: max(num1, num2):

if num1 > num2 max_val = num1, else max_val = num2

return max_val

Main Program:

Initialize loop control variable (continue = ‘y’)

While continue == ‘y’

Prompt for first number

Prompt for second number

Call function “max,” sending it the values of the two numbers,capture result in an assignment statement:

max_value = max (n1, n2)

Display the maximum value returned by the function

print(‘Max =’, max_val)

Ask user for if she/he wants to continue (continue = input(‘Goagain? y if yes’)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

1 Python Code with proper comments def maxnum1 num2 if num1 num2 if number1 number2 maxva... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!