How do you find the smallest value in a list Python?
Answers
Answered by
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
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