首页 热点专区 小学知识 中学知识 出国留学 考研考公
您的当前位置:首页正文

如何判断python的数组是否为空

2024-08-01 来源:要发发知识网

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')
显示全文