Computer Science, asked by georgesony007, 1 day ago

If list1 is 3, 5, 25, 1, 31, what is min(list1)?​

Answers

Answered by Anonymous
3

Answer:

The output will be 1.

Explanation:

The min() function returns the item with the lowest value.

We can see that, the list contains five number, that is, 3, 5, 25, 1, 31. And the smallest value in the given list is 1.

Extra knowledge:

The min() function returns the item with the lowest value, or the item with the lowest value in an iterable.

The sytanx is:

min(N1, N2, N3, ...)

Or:

min(iterable)

Similar questions