Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7b3f6a commit 5186a0dCopy full SHA for 5186a0d
README.md
@@ -38,8 +38,8 @@ elementwise_sum = [sum(pair) for pair in zip(list_a, list_b)]
38
sorted_by_second = sorted(<collection>, key=lambda el: el[1])
39
sorted_by_both = sorted(<collection>, key=lambda el: (el[1], el[0]))
40
flattened_list = list(itertools.chain.from_iterable(<list>))
41
-list_of_chars = list(<str>)
42
product_of_elems = functools.reduce(lambda out, x: out * x, <collection>)
+list_of_chars = list(<str>)
43
```
44
45
```python
0 commit comments