在 Python 中列出最小值,但没有?

发布于 2024-08-22 03:45:08 字数 238 浏览 10 评论 0原文

对于下面的 min() 示例,是否有任何巧妙的内置函数或返回 1 的函数? (我敢打赌,它有充分的理由不返回任何内容,但在我的特殊情况下,我需要它忽略 None 值,这非常糟糕!)

>>> max([None, 1,2])
2
>>> min([None, 1,2])
>>> 

Is there any clever in-built function or something that will return 1 for the min() example below? (I bet there is a solid reason for it not to return anything, but in my particular case I need it to disregard None values really bad!)

>>> max([None, 1,2])
2
>>> min([None, 1,2])
>>> 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

温暖的光 2024-08-29 03:45:08

返回 None

>>> print min([None, 1,2])
None
>>> None < 1
True

如果您想返回 1,则必须过滤掉 None

>>> L = [None, 1, 2]
>>> min(x for x in L if x is not None)
1

None is being returned

>>> print min([None, 1,2])
None
>>> None < 1
True

If you want to return 1 you have to filter the None away:

>>> L = [None, 1, 2]
>>> min(x for x in L if x is not None)
1
像极了他 2024-08-29 03:45:08

使用生成器表达式:

>>> min(value for value in [None,1,2] if value is not None)
1

最终,您可以使用过滤器:

>>> min(filter(lambda x: x is not None, [None,1,2]))
1

using a generator expression:

>>> min(value for value in [None,1,2] if value is not None)
1

eventually, you may use filter:

>>> min(filter(lambda x: x is not None, [None,1,2]))
1
月牙弯弯 2024-08-29 03:45:08

让 min() 的 None 无限:

def noneIsInfinite(value):
    if value is None:
        return float("inf")
    else:
        return value

>>> print min([1,2,None], key=noneIsInfinite)
1

注意:此方法也适用于 python 3。

Make None infinite for min():

def noneIsInfinite(value):
    if value is None:
        return float("inf")
    else:
        return value

>>> print min([1,2,None], key=noneIsInfinite)
1

Note: this approach works for python 3 as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文