Skip to content

Commit a4c9519

Browse files
committed
List
1 parent cc7400c commit a4c9519

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ flatter_list = list(itertools.chain.from_iterable(<list>))
5353
product_of_elems = functools.reduce(lambda out, el: out * el, <collection>)
5454
list_of_chars = list(<str>)
5555
```
56-
* **For details about built-in functions sorted(), min() and max() see [sortable](#sortable).**
56+
* **For details about sorted(), min() and max() see [sortable](#sortable).**
5757
* **Module [operator](#operator) provides functions itemgetter() and mul() that offer the same functionality as [lambda](#lambda) expressions above.**
5858

5959
```python

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
<body>
5656
<header>
57-
<aside>December 24, 2021</aside>
57+
<aside>December 25, 2021</aside>
5858
<a href="https://gto76.github.io" rel="author">Jure Šorn</a>
5959
</header>
6060

@@ -120,7 +120,7 @@
120120
list_of_chars = list(&lt;str&gt;)
121121
</code></pre>
122122
<ul>
123-
<li><strong>For details about built-in functions sorted(), min() and max() see <a href="#sortable">sortable</a>.</strong></li>
123+
<li><strong>For details about sorted(), min() and max() see <a href="#sortable">sortable</a>.</strong></li>
124124
<li><strong>Module <a href="#operator">operator</a> provides functions itemgetter() and mul() that offer the same functionality as <a href="#lambda">lambda</a> expressions above.</strong></li>
125125
</ul>
126126
<pre><code class="python language-python hljs">&lt;list&gt;.insert(&lt;int&gt;, &lt;el&gt;) <span class="hljs-comment"># Inserts item at index and moves the rest to the right.</span>
@@ -2875,7 +2875,7 @@
28752875

28762876

28772877
<footer>
2878-
<aside>December 24, 2021</aside>
2878+
<aside>December 25, 2021</aside>
28792879
<a href="https://gto76.github.io" rel="author">Jure Šorn</a>
28802880
</footer>
28812881

0 commit comments

Comments
 (0)