📌  相关文章
📜  Python|集合中的最大值和最小值

📅  最后修改于: 2022-05-13 01:55:11.536000             🧑  作者: Mango

Python|集合中的最大值和最小值

在本文中,我们将学习如何使用Python的内置函数在Python中获取集合中的最大和最小元素。
例子:

Input : set = ([8, 16, 24, 1, 25, 3, 10, 65, 55])
Output : max is 65

Input : set = ([4, 12, 10, 9, 4, 13])
Output : min is 4

集合中的 max()

Python中的内置函数max() 用于获取集合中所有元素的最大值。

# Python code to get the maximum element from a set
def MAX(sets):
    return (max(sets))
      
# Driver Code
sets = set([8, 16, 24, 1, 25, 3, 10, 65, 55])
print(MAX(sets))

输出:

65

集合中的 min()

# Python code to get the minimum element from a set
def MIN(sets):
    return (min(sets))
      
# Driver Code
sets = set([4, 12, 10, 9, 4, 13])
print(MIN(sets))

输出:

4