Python Programming - Lists - Discussion

Discussion Forum : Lists - General Questions (Q.No. 48)
48.
How can you find the maximum value in a list in Python?
max_value(list)
list.max()
max(list)
list.find_max()
Answer: Option
Explanation:
The max() function is used to find the maximum 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.