Tag view

#stdlib

Cross-subject tag search for related interview cards.

Clear

Results update as you type. Press / to jump straight into search.

Tagged with stdlib

3 cards

Python Medium Theory

collections and functools helpers: `defaultdict`, `Counter`, `deque`, `namedtuple`, `partial`, `reduce`, and `lru_cache`

These helpers reduce boilerplate for grouping, counting, queue behavior, lightweight record types, partial application, reduction, and memoization.

  • `Counter` counts fast
  • `deque` is strong for queues
  • `lru_cache` adds memoization with little code

collections and functools helpers: `defaultdict`, `Counter`, `deque`, `namedtuple`, `partial`, `reduce`, and `lru_cache`

Python Medium Theory

Standard library essentials: `os`, `sys`, `math`, `datetime`, `itertools`, `functools`, `re`, `subprocess`, `logging`, and `typing`

Python's standard library covers operating-system access, math, dates, iteration helpers, subprocesses, logging, regular expressions, and typing support.

  • Know the purpose of common modules
  • Reach for stdlib before extra dependencies
  • Interviews reward practical module selection

Standard library essentials: `os`, `sys`, `math`, `datetime`, `itertools`, `functools`, `re`, `subprocess`, `logging`, and `typing`