查找 Python 中记录的最小值
如果需要查找与其他元组索引最小值相对应的元组,可以使用“min”方法和“operator.itemgetter”方法对其进行操作。
“min”方法给出可迭代中的最小元素。itemgetter 从其操作数中获取特定的项。
以下是对其进行演示 −
示例
from operator import itemgetter my_list = [('Will', 45), ('Jam', 13), ('Pow', 89), ('Nyk', 56)] print ("The list is: " ) print(my_list) my_result = min(my_list, key = itemgetter(1))[0] print ("The value with minimum score is : " ) print(my_result)
输出
The list is: [('Will', 45), ('Jam', 13), ('Pow', 89), ('Nyk', 56)] The value with minimum score is : Jam
解释
- 导入必需的包。
- 定义元组的列表,并将其显示在控制台中。
- 此元组列表应用了“min”函数,以 itemgetter 为键。
- 此 itemgetter 有助于从操作数中获取特定项。
- 此值已分配给一个变量。
- 此变量是输出,显示在控制台中。
广告