gpt4 book ai didi

python - 如何根据值从列表中选择实例?

转载 作者:行者123 更新时间:2023-11-28 22:12:55 25 4
gpt4 key购买 nike

我有一个包含两个变量的类的实例列表:值和期望。

import random 

class MyClass:
def __init__(self, value):
self.value = value
self.expectation = random.random()

my_list = []
for i in range(1, 11):
my_list.append(MyClass(i))

我现在想获得具有最大期望的实例的值。我怎么得到这个?

最佳答案

单线:

max(my_list, key=lambda x:x.expectation).value

关于python - 如何根据值从列表中选择实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54417140/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com