Computer Science, asked by ommprakashdahoo99, 13 hours ago


How do you find the smallest value in a list Python?
How do you find the smallest value in a list Python?

Answers

Answered by o0Cutiepie0o
1

Answer:

The Python min() function returns the lowest value in a list of items. min() can be used to find the smallest number in a list or first string that would appear in the list if the list were ordered alphabetically.

Answered by omreddym
0

Answer:

The min() function.

Explanation:

The min() function picks the smallest value from a group of numbers. To get the smallest value, just write this in:

min(name)

Similar questions