Get max value from a list with lists?

2020-02-25 08:34发布

So I have a list that contains several list which all have three strings first, then one float number, like:

resultlist = [["1", "1", "a", 8.3931], ["1", "2", "b", 6.3231], ["2", "1", "c", 9.1931]]

How do I make a function that returns the maximum value (which here would be 9.1931)? I tried

def MaxValue():
    max_value = max(resultlist)
    return max_value

but that just gives me a list.

EDIT: Also, any way I could get the index for where the value comes from? Like, from which sublist?

7条回答
太酷不给撩
2楼-- · 2020-02-25 09:04

Loop through your outer list and select the last element of each sublist:

def max_value(inputlist):
    return max([sublist[-1] for sublist in inputlist])

print max_value(resultlist)
# 9.1931

It's also best if you keep all function related variables in-scope (pass the list as an argument and don't confuse the namespace by reusing variable names).

查看更多
Evening l夕情丶
3楼-- · 2020-02-25 09:08

If you want the index too you can use enumerate with operator.itemgetter using map:

from operator import itemgetter
def max_val(l, i):
    return max(enumerate(map(itemgetter(i), l)),key=itemgetter(1)))

Which will return a tuple of the max with the index:

In [7]: resultlist = [["1", "1", "a", 8.3931], ["1", "2", "b", 6.3231], ["2", "1", "c", 9.1931]]

In [8]: max_val(resultlist, -1)
Out[8]: (2, 9.1931)

Or just a regular gen exp:

from operator import itemgetter
def max_val(l, i):
    return max(enumerate(sub[i] for sub in l), key=itemgetter(1))
查看更多
萌系小妹纸
4楼-- · 2020-02-25 09:16

In perhaps a more functional than pythonic manner:

>>> max(map(lambda x: x[3], resultlist))
9.1931

It begins by mapping each element of result list to the number value and then finds the max.

The intermediate array is:

>>> map(lambda x: x[3], resultlist)
[8.3931000000000004, 6.3231000000000002, 9.1930999999999994]
查看更多
再贱就再见
5楼-- · 2020-02-25 09:16

Numpy helps with numerical nested lists. Try this:

resultlist = [[3, 2, 4, 4], [1, 6, 7, -6], [5, 4, 3, 2]]
max(resultlist)  # yields [5, 4, 3, 2] because 5 is the max in: 3, 1, 5
np.max(resultlist)  # yields 7 because it's the absolute max

max() returns the list which first element is the maximum of all lists' first element, while np.max() returns the highest value from all the nested lists.

查看更多
时光不老,我们不散
6楼-- · 2020-02-25 09:21
resultlist = [["1", "1", "a", 8.3931], ["1", "2", "b", 6.3231], ["2", "1", "c", 9.1931]]
print(max(map(lambda x: x[-1],resultlist)))

Output:

9.1931
查看更多
狗以群分
7楼-- · 2020-02-25 09:22

Are you trying to just get the maximum number from the floats (the last index in your list)? If so, here's a solution.

last_indices = [x[3] for x in resultlist]
return max(last_indices)
查看更多
登录 后发表回答