Language: Python
List Comprehension Examples
Filter, map, and pair-build in single list-comprehension expressions.
Author:
chris
SQLite with the sqlite3 Stdlib
Create a table, insert rows, and query with parameterized SQL.
Author:
chris
Sort a List of Dicts
Sort a list of dicts by a key with sorted() + itemgetter for speed.
Author:
chris
Regex with re.search
Use named groups with the re stdlib and access them via groupdict().
Author:
chris