如果输入具有相似的值,我如何从中返回多个结果

例如:在这种情况下,需要最昂贵的物品。

d= (('Shirts',40000),('trousers',('provisions',34000),('others',34000))

def pick_the_most_expensive_from_my_list(d):
    material = '' 
    price = None
    for x,y in d:
        if price is None:
            price= y
            material= x
        while y > price:
            price = y                           
            material= x
        
    return material,price
yyfyxzt 回答:如果输入具有相似的值,我如何从中返回多个结果

您可以先找到最高价格,然后返回具有该价格的对。

d= (('Shirts',40000),('trousers',('provisions',34000),('others',34000))

def pick_the_most_expensive_from_my_list(d):
    return [pair for pair in d if pair[1]==max([item[1] for item in d])]

输出

[('Shirts',40000)]
,

你需要先找到最高价格,然后过滤掉有那么多价格的值。

d= (('Shirts',34000))

def pick_the_most_expensive_from_my_list(d):
    if not d:
        return None
    max_v = max(d,key=lambda x:x[1])[-1]
    return list(filter(lambda x: x[1]==max_v,d))
    
print(pick_the_most_expensive_from_my_list(d))

输出

[('Shirts',40000)]

或使用字典

d= (('Shirts',34000))

def pick_the_most_expensive_from_my_list(d):
    if not d:
        return None
    price = {}
    
    for i in d:
        if i[1] not in price:
            price[i[1]] = [i]
        else:
            price[i[1]].append(i)
    
    return price.get(max(price))
    
print(list(pick_the_most_expensive_from_my_list(d)))
,

def mostExpensiveItems():
    items = [''] 
    prices = [0] 
    for currentItems,currentPrices in items:  
        if currentPrices > prices[-1]: 
            items.append(currentItems)
            prices.append(currentPrices)
        elif currentPrices == prices[-1]:
            items.append(currentItems)
            prices.append(currentPrices)
    print(items)
    print(prices)
本文链接:https://www.f2er.com/7108.html

大家都在问