The Min function is used to find the smallest value in a set of values. true or false
Answers
Answer:
Explanation:
The Excel MIN function returns the smallest numeric value in a range of values. The MIN function ignores empty cells, the logical values TRUE and FALSE, and text values, get the smallest value.
Answer:
It is true that the Min function is used to find the smallest value in a set of values.
Explanation:
Min function is a built-in function of Python that can find the smallest value in any object like List, Tuple, Set, etc.
Python is famous for its rich libraries and built-in features. This min function helps to find the smallest value without writing any code for sorting the whole object.
Similarly, we have a max function too that can return the maximum value in any object. You can use both of the functions with any lists, sets, tuples, etc.
For example:
example = (1,2,5,6,8,76,90)
print(min(example))
print(max(example))
OUTPUT:
1
90
#SPJ2