Introduction to Programming using Python 1st Edition

Published by Pearson
ISBN 10: 0132747189
ISBN 13: 978-0-13274-718-9

Chapter 6 - Functions - Programming Exercises - Page 203: 6.5

Answer

code

Work Step by Step

# 6.5 (Sort three numbers) Write the following function to display three numbers in # increasing order: # def displaySortedNumbers(num1, num2, num3): # Write a test program that prompts the user to enter three numbers and invokes the # function to display them in increasing order. def displaySortedNumbers(num1, num2, num3): max1 = max(num1, num2, num3) max2 = max3 = 0 if max1 == num1: max2 = max(num2, num3) max3 = min(num2, num3) elif max1 == num2: max2 = max(num1, num3) max3 = min(num1, num3) else: max2 = max(num1, num2) max3 = min(num1, num2) print("The sorted numbers are", max3, max2, max1) n1, n2, n3 = eval(input("Enter three numbers: ")) displaySortedNumbers(n1, n2, n3)
Update this answer!

You can help us out by revising, improving and updating this answer.

Update this answer

After you claim an answer you’ll have 24 hours to send in a draft. An editor will review the submission and either publish your submission or provide feedback.