Write the program in Python to ask the user to enter three i…
Write the program in Python to ask the user to enter three integer values. Pass these three values to a function that has default arguments of 1 for each of these parameters. The function must find the maximum, minimum and the sum of these tree values and return the (maximum, minimum and sum) back to the main program. The main program must print these returned values.
Read Details