any()
any()函数采用iterable作为参数: any(iterable) 。
迭代器可以是列表,元组或字典。
如果iterable中的所有元素为true,则any()函数将返回“ True”。但是,如果传递给该函数的Iterable为空,则返回“ False”。
此功能类似于下面的代码块
def any(iterable):
for element in iterable:
if element:
return True return False
下面是一个通过any返回大于3的数字为True的示例。这里我们使用列表推导使代码保持简单。
list=[2,3,4,5,6,7]
print(any([num>3 for num in list]))
输出为“ True”,因为4,5,6和7大于3。
all()
all()函数还采取了以iterable作为参数:all(iterable) 。
仅仅把iterable中的所有项目均为true时,all()函数才返回“ True”。
即使一项为假,它也会返回“ False”。但是,如果iterable为空,则返回“ True”。
all()函数类似于下面的代码块
def all(iterable):
for element in iterable:
if not element:
return False
return True
以下是使用any来返回大于3的数字的示例。
list=[1,2,3,3]
print(all([num>3 for num in list]))
输出为False,因为提供的列表中没有数字大于3。
在字典中,all()和any()函数都检查返回True或False的键,而不是返回值的键。
点击查看更多内容
1人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦