当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python all()用法及代码示例


Python all() 函数

all() 函数用于检查迭代的所有元素是否为真。它接受一个可迭代的容器并返回True如果所有元素都为真,否则返回False

用法:

    all(iterable)

参数: iterable– 一个可迭代的容器,如列表、元组、字典。

返回值: bool– 一个布尔值

例:

    Input:
    val = [10, 20, 30, 40]
    print(all(val))
    val = [10, 20, 0, 40]
    print(all(val))

    Output:
    True
    False

用于检查可迭代对象的所有元素是否为真的 Python 代码(打印返回值)

# python code to demonstrate example
# of all() function

val = [10, 20, 30, 40]  #list with all true values
print(all(val))

val = [10, 20, 0, 40]  #list with a flase value
print(all(val))

val = [0, 0, 0, 0.0]  #list with all false values
print(all(val))

val = [10.20, 20.30, 30.40]  #list with all true(float) values
print(all(val))

val = [] #an empty list
print(all(val))

val = ["Hello", "world", "000"] #list with all true values
print(all(val))

输出

True
False
False
True
True
True 

用于检查可迭代对象的所有元素是否为真的 Python 代码(使用条件检查)

# python code to demonstrate example
# of all() function

list1 = [10, 20, 30, 40]
list2 = [10, 20, 30, 0]

# checking with condition
if all(list1)==True:
    print("list1 has all true elements")
else:
    print("list1 does not has all true elements")

if all(list2)==True:
    print("list2 has all true elements")
else:
    print("list2 does not has all true elements")

输出

list1 has all true elements
list2 does not has all true elements


相关用法


注:本文由纯净天空筛选整理自 all() function with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。