导语:
本文主要介绍了关于python判断列表值是否为空的相关知识,包括python 判断空值,以及pandas判断空值这些编程知识,希望对大家有参考作用。
python中判断一个列表是否为空,可以使用以下方法
1、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')
推荐学习《
》
2.if 列表判断
列表不为空(空列表等于 False)
list_2 = []
if list_2:
print('list_2 is not none')
3.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 中计算平方08/13
- ♥ 什么是python3字符编码?如何使用?12/13
- ♥ 如何在python中安装idle11/26
- ♥ 如何用python导入随机库?10/27
- ♥ 如何在 python 开发中使用异步?10/15
- ♥ 如何在python中清空数组(列表)元素08/19
内容反馈