Files
Learn-Python-Programming-Th…/ch01/scopes1.py
T
adii1823 ff85709895 ch01
2021-10-28 16:58:30 +05:30

15 lines
203 B
Python

# Local versus Global
# we define a function, called local
def local():
m = 7
print(m)
# we define m within the global scope
m = 5
# we call, or `execute` the function local
local()
print(m)