gpt4 book ai didi

python - 检查列表是否为空或仅包含 None 的最简洁方法?

转载 作者:太空狗 更新时间:2023-10-29 22:00:38 26 4
gpt4 key购买 nike

检查列表是否为空或仅包含 None 的最简洁方法?

我知道我可以测试:

if MyList:
pass

和:

if not MyList:
pass

但是如果列表中有一个项目(或多个项目),但这些项目是 None 怎么办:

MyList = [None, None, None]
if ???:
pass

最佳答案

一种方法是使用 all和列表理解:

if all(e is None for e in myList):
print('all empty or None')

这也适用于空列表。更一般地,要测试列表是否仅包含评估为 False 的内容,您可以使用 any :

if not any(myList):
print('all empty or evaluating to False')

关于python - 检查列表是否为空或仅包含 None 的最简洁方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1270920/

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