Browse Source

Inline

pull/140/head
Jure Šorn 2 years ago
parent
commit
14c7cb6eaf
2 changed files with 2 additions and 2 deletions
  1. 2
      README.md
  2. 2
      index.html

2
README.md

@ -778,7 +778,7 @@ Inline
### Any, All ### Any, All
```python ```python
<bool> = any(<collection>) # Is `bool(el)` True for any element.
<bool> = any(<collection>) # Is `bool(<el>)` True for any element.
<bool> = all(<collection>) # Is True for all elements or empty. <bool> = all(<collection>) # Is True for all elements or empty.
``` ```

2
index.html

@ -668,7 +668,7 @@ func(*args, **kwargs)
<ul> <ul>
<li><strong>Reduce must be imported from the functools module.</strong></li> <li><strong>Reduce must be imported from the functools module.</strong></li>
</ul> </ul>
<div><h3 id="anyall">Any, All</h3><pre><code class="python language-python hljs">&lt;bool&gt; = any(&lt;collection&gt;) <span class="hljs-comment"># Is `bool(el)` True for any element.</span>
<div><h3 id="anyall">Any, All</h3><pre><code class="python language-python hljs">&lt;bool&gt; = any(&lt;collection&gt;) <span class="hljs-comment"># Is `bool(&lt;el&gt;)` True for any element.</span>
&lt;bool&gt; = all(&lt;collection&gt;) <span class="hljs-comment"># Is True for all elements or empty.</span> &lt;bool&gt; = all(&lt;collection&gt;) <span class="hljs-comment"># Is True for all elements or empty.</span>
</code></pre></div> </code></pre></div>

Loading…
Cancel
Save