Skip to content

Instantly share code, notes, and snippets.

@JoeJoe1313
Created September 6, 2025 11:37
Show Gist options
  • Select an option

  • Save JoeJoe1313/1c138fdfe24738e702e7fd974967c922 to your computer and use it in GitHub Desktop.

Select an option

Save JoeJoe1313/1c138fdfe24738e702e7fd974967c922 to your computer and use it in GitHub Desktop.
Python's os
Feature os.environ['VAR'] os.getenv('VAR', default)
Operation Type Mutable (Read/Write) Read-Only
Object Type Dictionary-style mapping object Function call
Missing Variable Raises a KeyError Returns None or a specified default
Primary Use Case Accessing or modifying mandatory configuration Safely reading optional configuration with fallbacks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment