Browse Source

Tuple

pull/44/head
Jure Šorn 5 years ago
parent
commit
e9925a5cda
2 changed files with 2 additions and 2 deletions
  1. 2
      README.md
  2. 2
      index.html

2
README.md

@ -143,7 +143,7 @@ Tuple
```python
<tuple> = ()
<tuple> = (<el>, )
<tuple> = (<el_1>, <el_2>, ...)
<tuple> = (<el_1>, <el_2> [, ...])
```
### Named Tuple

2
index.html

@ -309,7 +309,7 @@ Counter({<span class="hljs-string">'blue'</span>: <span class="hljs-number">3</s
<div><h2 id="tuple"><a href="#tuple" name="tuple">#</a>Tuple</h2><p><strong>Tuple is an immutable and hashable list.</strong></p><pre><code class="python language-python hljs">&lt;tuple&gt; = ()
&lt;tuple&gt; = (&lt;el&gt;, )
&lt;tuple&gt; = (&lt;el_1&gt;, &lt;el_2&gt;, ...)
&lt;tuple&gt; = (&lt;el_1&gt;, &lt;el_2&gt; [, ...])
</code></pre></div>

Loading…
Cancel
Save