您现在的位置是:课程教程文章

python判断列表是否为空

2023-12-18 22:56课程教程文章 人已围观

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判断列表是否为空

上一篇:python判断某一元素是否整数

下一篇:没有了

站点信息

  • 文章统计篇文章