Python Programming - Lists - Discussion

Discussion Forum : Lists - General Questions (Q.No. 59)
59.
How can you find the minimum value in a numeric list in Python?
list.min()
min_value(list)
list.minimum()
min(list)
Answer: Option
Explanation:
The min() function is used to find the minimum value in a list in Python.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.