w3resource

Python: Accepts six numbers as input and sorts them in descending order

Python Basic - 1: Exercise-42 with Solution

Write a Python program that accepts six numbers as input and sorts them in descending order.

Input:
Input consists of six numbers n1, n2, n3, n4, n5, n6 (-100000 ≤ n1, n2, n3, n4, n5, n6 ≤ 100000). The six numbers are separated by a space.
Input six integers:
15 30 25 14 35 40
After sorting the said integers:
40 35 30 25 15 14

Pictorial Presentation:

Python: Accepts six numbers as input and sorts them in descending order

Sample Solution:

Python Code:

print("Input six integers:")
nums = list(map(int, input().split()))
nums.sort()
nums.reverse()
print("After sorting the said ntegers:")
print(*nums)

Sample Output:

Input six integers:
 15 30 25 14 35 40
After sorting the said ntegers:
40 35 30 25 15 14

Flowchart:

Flowchart: Python - Accepts six numbers as input and sorts them in descending order

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to compute and print sum of two given integers (more than or equal to zero). If given integers or the sum have more than 80 digits, print "overflow".
Next: Write a Python program to test whether two lines PQ and RS are parallel. The four points are P(x1, y1), Q(x2, y2), R(x3, y3), S(x4, y4).

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.