📖 INDEX
LOADING ENGINE...
Scope (Global / Local)
PYTHON REFERENCE // scope-global-local
Variables created inside a function are local; variables created outside are global
Syntax
global x
x = 300Examples
Example 01Basic Usage
global x
x = 300Best Practices
- Consult official Python documentation for advanced usage.
- Ensure proper indentation and Pythonic style (PEP 8).