导语:
本文主要介绍了关于python判断列表是否为空的相关知识,包括python判断list是否为空函数,以及如何判断列表是否为空这些编程知识,希望对大家有参考作用。
is not None 判断
列表不为空
list_1 = []
if list_1 is not None:
print('list is not none')
列表为空
list_1 = []
if list_1[0] is None:
print('list_1 is none')
if 列表判断
列表不为空(空列表等于 False)
list_2 = []
if list_2:
print('list_2 is not none')
length列表长度判断
列表为空
list_3 = []
if len(list_3) == 0:
print('list_3 is none')
list_3 = []
if len(list):
print('list_3 is not none')
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python对象持久化的方法12/30
- ♥ python中如何判断字符的大小写09/21
- ♥ 为什么python没有高效运行?10/25
- ♥ python如何追加字符串09/14
- ♥ python如何追加到文件中09/23
- ♥ python如何求偶数之和?08/18
内容反馈