Quick recall mode

Keywords first, details second.

Use this mode when you want memory triggers only: title, summary, tags, and bullet anchors without long answers getting in the way.

Clear

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

Quick recall

374 cards

Python Medium Theory

Instance methods, class methods, static methods, `@property`, setters, deleters, and dataclasses

Instance methods work with object state, class methods work with the class, static methods are utility functions inside the namespace, properties expose attribute-style access, and dataclasses reduce boilerplate.

  • Choose method type based on state access
  • Properties can validate or compute values
  • Dataclasses generate common methods automatically