X Tutup
Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 768 Bytes

File metadata and controls

30 lines (24 loc) · 768 Bytes
title Python all() built-in function - Python Cheatsheet
description Return True if all elements of the iterable are true (or if the iterable is empty).
Python all() built-in function From the Python 3 documentation Return True if all elements of the iterable are true (or if the iterable is empty).

Examples

>>> all([True, True, True])
# True

>>> all((0, True, False))
# False

>>> all({1, 1, 1})
# True
X Tutup