在python中为非空集合返回布尔值的推荐方法是什么?

时间:2010-09-16 12:35:57

标签: python collections

我在SO上遇到了问题Python: What is the best way to check if a list is empty?

现在,如果我想根据函数中的集合True是非空的(空)返回Falsecoll),建议的方法是什么? return not not coll

1 个答案:

答案 0 :(得分:12)

您可以使用

return bool(coll)