-
Notifications
You must be signed in to change notification settings - Fork 1
/
Python_Scope.py
126 lines (83 loc) · 2.87 KB
/
Python_Scope.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#Python Scope
#A variable is only available from inside the region it is created. This is called scope.
print("A variable is only available from inside the region it is created. This is called scope.")
print("\n")
'''Local Scope
A variable created inside a function belongs to the local scope of that function,
and can only be used inside that function.
'''
#Example
#A variable created inside a function is available inside that function:
print("A variable created inside a function is available inside that function:")
def myfunc():
x = 300
print(x)
myfunc()
'''
Function Inside Function
As explained in the example above, the variable x is not available outside the function,
but it is available for any function inside the function:
'''
#Example
#The local variable can be accessed from a function within the function:
print("The local variable can be accessed from a function within the function:")
def myfunc():
x = 300
def myinnerfunc():
print(x)
myinnerfunc()
myfunc()
'''
Global Scope
A variable created in the main body of the Python code is a global variable and belongs to the global scope.
Global variables are available from within any scope, global and local.
'''
#Example
#A variable created outside of a function is global and can be used by anyone:
print("A variable created outside of a function is global and can be used by anyone:")
x = 300
def myfunc():
print(x)
myfunc()
print(x)
'''
Naming Variables
If you operate with the same variable name inside and outside of a function,
Python will treat them as two separate variables, one available in the global scope
(outside the function) and one available in the local scope (inside the function):
'''
#Example
#The function will print the local x, and then the code will print the global x:
print("The function will print the local x, and then the code will print the global x:")
x = 300
def myfunc():
x = 200
print(x)
myfunc()
print(x)
'''
Global Keyword
If you need to create a global variable,
but are stuck in the local scope, you can use the global keyword.
The global keyword makes the variable global.
'''
#Example
#If you use the global keyword, the variable belongs to the global scope:
print("If you use the global keyword, the variable belongs to the global scope:")
def myfunc():
global x
x = 300
myfunc()
print(x)
'''
Also, use the global keyword if you want to make a change to a global variable inside a function.
'''
#Example
#To change the value of a global variable inside a function, refer to the variable by using the global keyword:
print("To change the value of a global variable inside a function, refer to the variable by using the global keyword:")
X = 300
def myfunc():
global x
x = 200
myfunc()
print(x)