Context Managers (Slideshow)

Problem

  • Resource cleanup

  • Python is garbage collected

  • Cleanup does happen but nobody can say when ⟶ not deterministic

Solution: The with Statement

with open('/etc/passwd') as f:
    ... use f ...