Last Updated: [Current Month Year]
Brief one-sentence description of what this project does and who it's for.
# How to sort a Python dict by value | |
# (== get a representation sorted by value) | |
>>> xs = {'a': 4, 'b': 3, 'c': 2, 'd': 1} | |
>>> sorted(xs.items(), key=lambda x: x[1]) | |
[('d', 1), ('c', 2), ('b', 3), ('a', 4)] | |
# Or: |
<article> | |
<aside id="aside"></aside> | |
<main id="main"></main> | |
</article> |