Python Math: Find the Maximum and minimum numbers from the specified decimal numbers
36. Max and Min of Decimals
Write a Python program to find the maximum and minimum numbers from the specified decimal numbers.
Sample Solution:
Python Code:
from decimal import *
data = list(map(Decimal, '2.45 2.69 2.45 3.45 2.00 0.04 7.25'.split()))
print("Maximum: ", max(data))
print("Minimum: ", min(data))
Sample Output:
Maximum: 7.25 Minimum: 0.04
Pictorial Presentation:
Flowchart:

For more Practice: Solve these Related Problems:
- Write a Python program to find the maximum and minimum values from a given list of Decimal numbers using built-in functions and print the results.
- Write a Python function that accepts a list of Decimals, sorts them, and returns the smallest and largest values as a tuple.
- Write a Python script to compare the max and min of a list of Decimal numbers and output the difference between them.
- Write a Python program to compute and display the maximum and minimum Decimal values from a user-provided list, ensuring proper type conversion.
Go to:
Previous: Write a Python program to convert Polar coordinates to rectangular coordinates.
Next: Write a Python program to find the sum of the following decimal numbers and display the numbers in sorted order.
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.