10.4 Scope of Variables

Duration: 4 min

This video lesson is available to enrolled students.

Enroll to watch — DSSSB TGT Computer Science 2026 Section B

AI Summary

An AI-generated summary of this video lecture.

This video is a Python programming lecture that explains the concept of variable scope. The instructor begins by introducing the two main types of scope: Local and Global. He demonstrates local scope using a function where a variable 'x' is defined inside the function and is only accessible within it, resulting in a NameError when attempted to be accessed outside. He then explains global scope, where a variable defined outside a function is accessible everywhere, including inside functions. To modify a global variable from within a function, he introduces the 'global' keyword, showing how it allows the function to change the global variable's value. The lesson concludes with a final example that combines both global and local variables, illustrating how the function can access the global variable and also define a local variable with the same name, which takes precedence within the function's scope.

Chapters

  1. 0:00 2:00 00:00-02:00

    The video starts with a title slide showing 'Scope of Variables' and the Python logo. The instructor introduces the topic, stating that variables have scope, which determines their accessibility. The slide then lists the two types: '1. Local Scope' and '2. Global Scope'. The instructor explains that local scope means variables declared inside a function are only accessible within that function. He then shows a code example on the screen: a function 'test()' is defined with a variable 'x = 10' inside it. When the function is called, it prints '10'. However, when 'print(x)' is called outside the function, a NameError occurs, which the instructor points out on the screen, explaining that 'x' is not defined in the global scope because it is a local variable.

  2. 2:00 4:27 02:00-04:27

    The instructor transitions to the concept of global scope. He shows a code example where 'x = 20' is defined globally, and a function 'show()' prints 'x'. The output is '20', demonstrating that the global variable is accessible inside the function. He then introduces the 'global' keyword to modify a global variable from within a function. He shows a code snippet where 'x = 10' is global, and a function 'change()' uses 'global x' to change its value to '50'. After calling 'change()', the print statement outside the function shows '50', proving the global variable was modified. Finally, he presents a combined example with a global 'x = 100' and a function 'demo()' that has a local 'x = 50'. He explains that inside the function, the local 'x' is used, so 'print(x)' outputs '50'. He writes 'Inside: 50' and 'Outside: 100' to illustrate the difference in scope, concluding the lesson.

The video provides a clear, step-by-step explanation of Python's variable scoping rules. It effectively uses code examples and on-screen annotations to demonstrate the difference between local and global scope. The progression from a simple local scope example to the use of the 'global' keyword and a combined example with both scopes makes the concept accessible. The instructor's method of showing the error message and then explaining the solution reinforces the learning. The final synthesis of the concepts is a strong conclusion that ties together the entire lesson on variable accessibility and modification.