<li><strong>Reduce must be imported from the functools module.</strong></li>
</ul>
<div><h3id="anyall">Any, All</h3><pre><codeclass="python language-python hljs"><bool> = any(<collection>) <spanclass="hljs-comment"># Is `bool(el)` True for any element.</span>
<div><h3id="anyall">Any, All</h3><pre><codeclass="python language-python hljs"><bool> = any(<collection>) <spanclass="hljs-comment"># Is `bool(<el>)` True for any element.</span>
<bool> = all(<collection>) <spanclass="hljs-comment"># Is True for all elements or empty.</span>