Python 判断List 是否为空
Posted 在奋斗的大道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 判断List 是否为空相关的知识,希望对你有一定的参考价值。
方式一:使用len 函数=判断list 长度大小
eg:
lists = []
if len(lists):
print('lists is not empty')
else:
print('lists is empty')
方式二:一个空 list 本身等同于 False
eg:
lists = []
if lists:
print('lists is not empty')
else:
print('lists is empty')
以上是关于Python 判断List 是否为空的主要内容,如果未能解决你的问题,请参考以下文章