Understanding_Variable_Scope_in_Python
Understanding_Variable_Scope_in_Python
========================================
Introduction
------------
- Greet audience and introduce yourself.
- Briefly explain what variables are in Python.
- Hook: Ask - 'Have you ever gotten a "variable not defined" error and didn't know
why?'
What is Scope?
--------------
- Definition: The region of a program where a variable is recognized.
- Explain why scope matters — it affects how/where variables can be accessed or
modified.