Files
Learn-Python-Programming-Th…/ch04/scoping.level.1.py
T
adii1823 ee641c189f ch04
2021-10-28 17:37:54 +05:30

10 lines
225 B
Python

# scoping.level.1.py
def my_function():
test = 1 # this is defined in the local scope of the function
print('my_function:', test)
test = 0 # this is defined in the global scope
my_function()
print('global:', test)