标签: python collections
我在SO上遇到了问题Python: What is the best way to check if a list is empty?。
现在,如果我想根据函数中的集合True是非空的(空)返回False(coll),建议的方法是什么? return not not coll?
True
False
coll
return not not coll
答案 0 :(得分:12)
您可以使用
return bool(coll)