2

抱歉,在标题中解释我的问题有点困难,但基本上,我有一个职位列表,每个职位都可以通过一个函数传递,以获得一个数字,为​​您提供有关职位的数据。我想要做的是返回列表中数据值最低的位置,但我似乎找不到这样做的方法。

一些伪代码应该会有所帮助:

def posfunc(self,pos):
    x,y = pos
    return x**2-y

def minpos(self)
    returns position with the least x**2-y value
4

2 回答 2

7

Python 很酷 :D:

min(positions, key=posfunc)

从内置文档:

>>> help(min)
min(...)
    min(iterable[, key=func]) -> value
    min(a, b, c, ...[, key=func]) -> value

    With a single iterable argument, return its smallest item.
    With two or more arguments, return the smallest argument.

lambda 在这里值得一提:

min(positions, key=lambda x: x[0]**2 - x[1])

如果您不在posfunc其他地方使用,大致相同,但我认为更具可读性。

于 2013-01-13T16:05:02.403 回答
3

你基本上可以使用 min() 函数

pos = [(234, 4365), (234, 22346), (2342, 674)]

def posfunc(pos):
    x,y = pos
    return x**2-y

min(pos, key=posfunc)
于 2013-01-13T16:12:25.067 回答