英語ドキュメント:
all
(all
(iterable)
Return True
iterable)
Return True
iterable
def all(iterable): for element in iterable: if not element: return False return True
説明:
1. 反復可能なiterator オブジェクトがパラメータである場合、パラメータが空であるか、反復可能オブジェクトではない場合、エラーが報告されます2. 反復可能オブジェクトの各要素の論理値が True の場合は True を返し、それ以外の場合は False を返します
2.
3. 反復可能なオブジェクトが空(要素数が0)の場合、True
>>> all(2) #传入数值报错 Traceback (most recent call last): File "<pyshell#9>", line 1, in <module> all(2) TypeError: 'int' object is not iterable🎜🎜🎜🎜🎜を返す
以上がPython の組み込み関数の詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。