当前位置: 首页 > 问答 > Python编程 > 问答详情

python判断列表值是否为空

09月28日 05:13624人阅读
刘老师 Python编程

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')

推荐学习《python教程》

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')

职业技能申请领取
您的姓名
您的电话
意向课程
点击领取

环球青藤

官方QQ

扫描上方二维码或点击一键加群,免费领取大礼包,加群暗号:青藤。 一键加群

问答来自

刘老师 Python编程
好评率85% 浏览624

相关问题

如何比较python字符串大小?
黄老师 Python编程
python中如何将九九乘法表输出到txt文件中?
谷老师 Python编程
python中如何实现遍历整个列表?
许老师 Python编程
课程咨询 学员服务 公众号

扫描关注微信公众号

APP

扫描下载APP

返回顶部