190715 Python 内置函数之all

all判断给定的可迭代参数 iterable 中的所有元素是否都为 TRUE,如果是返回 True,否则返回 False

等价于:

1
2
3
4
5
def all(iterable):
for element in iterable:
if not element:
return False
return True

实例:

1
all(['a', 'b', 'c', 'd'])
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×