Examples you can actually run
Python executes in the page through WebAssembly — edit the snippet, run it, see the real output. Nothing to install, nothing sent to a server.
from collections import Counter
Counter("mississippi").most_common(2)
>>> [('i', 4), ('s', 4)]
