A function that returns the lowest value in a series fill in the blanks
Answers
Answered by
1
Answer:
The Excel MIN function returns the smallest numeric value in a range of values.
Answered by
2
According to python, min() is the function.
- It can take as many arguments as you want.
- You do not need to import math class as you need to do it in Java.
- It's arguments needs to be separated by the comma.
How to use it::
s = min(4, 5, 9)
print(s) #Outputs 4
A trick -- max() function is used to find maximum of number in a series.
I hope that my answer helps you....
Similar questions