Avoiding Global Abuse (Best Practice Warning)
Mon 10 August 2026
config = {"theme": "dark"}
def update_config(new_theme):
config["theme"] = new_theme # No global keyword needed
Score: 10
Category: chapter13_global_and_scope
config = {"theme": "dark"}
def update_config(new_theme):
config["theme"] = new_theme # No global keyword needed
Score: 10
Category: chapter13_global_and_scope