当前分类:300例题>>正文

Python示例:检查列表是否为空

来源:互联网   更新时间:2023年6月21日  

Python 示例

写一个 Python示例来检查列表是否为空。我们用 Python not 运算符发现列表是一个空列表。

# List is Empty

list1 = []

if not list1:
    print("The List is Empty")
else:
    print("The List is Not Empty")

在这个 Python 示例中,我们使用了返回列表长度的 len 函数。如果列表长度等于零,那么它就是一个空列表;否则,列表不为空。

# List is Empty

list1 = []

if len(list1) == 0:
    print("The List is Empty")
else:
    print("The List is Not Empty")
The List is Empty
本文固定链接:https://6yhj.com/leku-p-4379.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 响应头