我有一个自定义类(简化)如下:
class SoftMatch:
def __init__(self, time_d):
self.time_delta = time_d
以及包含此类示例的dict:
softmatches = {"Nikon": SoftMatch(1), "Canon": SoftMatch(2), "Sony": SoftMatch(3)}
我需要得到键,最好是具有最小“self.time_delta”的SoftMatch对象的值。
我可以用python的“min”函数或者dict解析或者它们的组合来完成这个任务吗?
1条答案
按热度按时间t9aqgxwy1#
这应该行得通: