Mastering Python's locals() and globals(): Understanding Namespaces
Mastering Python's locals() and globals(): Understanding Namespaces ๐
In Python, locals() and globals() give you full access
to the local and global namespaces of your program.
These functions are incredibly useful for debugging, dynamic execution, and introspection.
✅ globals(): Access global variables
# globals(): access global scope
x = 100
print(globals()['x']) # 100
✅ locals(): See local variables inside functions
# locals(): inspect local scope inside a function
def sample():
a = 10
b = 20
print(locals())
sample()
✅ Debugging trick with locals()
# Debugging with locals()
def debug_variables():
name = "Alice"
age = 30
for key, val in locals().items():
print(f"{key} = {val}")
debug_variables()
✅ Using globals() to assign variables dynamically
# Dynamically set global variable using globals()
globals()['dynamic_var'] = "Hello World"
print(dynamic_var) # Hello World
Understanding Python's namespace system is a game changer.
With locals() and globals(), you can debug smarter,
build meta tools, and interact with your environment dynamically.
If you know your scope, you control the flow. locals() and globals() are your backstage pass to Python's execution model. ๐
Icons by Flaticon
Comments
Post a Comment