29. 변수 Scope - swkim0128/PARA GitHub Wiki

29. 변수 Scope

rw-book-cover

Metadata

  • Author: 위키독스
  • Full Title: 29. 변수 Scope
  • Category: #articles
  • Document Tags: python
  • Summary: JavaScript and Python have different variable scopes, with JavaScript's let keyword limiting variables to their block, while var allows access outside. Python follows the LEGB rule for variable scope, prioritizing local variables over global ones. The global keyword in Python allows functions to modify global variables instead of creating new local ones.
  • URL: https://wikidocs.net/16055

Highlights

  • • 파이썬 변수 scope 룰을 LEGB 룰이라고 불리기도 합니다. • 변수가 값을 찾을 때, Local -> Enclosed -> Global -> Built-in (View Highlight)
⚠️ **GitHub.com Fallback** ⚠️