Skip to main content
Version: 1.0

Python Concepts

  • class method vs static method

    • class method:
      • Access class state
      • Used as factory method
    • static method
      • Can't access class state
      • Used as utility class
  • Scope

    • LEGB