def
局部变量:在函数内部,类内部,lamda.的变量,它的作用域仅在函数、类、lamda里面
全局变量:在当前py文件都生效的变量
让局部变量变成全局变量
def tests():
global vars
vars = 6
tests()
print(vars)
6
先global声明一个变量,再给这个变量赋值,不能直接 global vars = 6 ,会报错哦!!
# while
while True:
var = 100
break
print(var)
# try except
try:
var = 111
raise Exception
except:
print(var)
print(var)
# if
if True:
var = 222
print(var)
# elif
if False:
pass
elif True:
var = 333
print(var)
# else
if False:
pass
else:
var = 444
print(var)
# for
for i in range(0, 1):
var = 555
print(var)
100
111
111
222
333
444
555
def test():
var = 6
print(var) #
var = 5
print(var)
test()
print(var)
5
6
5
这是我们代码找变量的顺序,倘若最后一个python内建函数也没有找到的话就会报错了
无需安装第三方库,可以直接调用的函数,让我们来看看有哪些内建函数:
print(dir(__builtins__))
['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'ModuleNotFoundError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 'RecursionError', 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning', 'StopAsyncIteration', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '__build_class__', '__debug__', '__doc__', '__import__', '__loader__', '__name__', '__package__', '__spec__', 'abs', 'all', 'any', 'ascii', 'bin', 'bool', 'breakpoint', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars', 'zip']
# Python内建函数的变量
x = int(0.22)
# 全局变量
x = 1
def foo():
# 外部函数变量
x = 2
def innerfoo():
# 局部变量
x = 3
print('local ', x)
innerfoo()
print('enclosing function locals ', x)
foo()
print('global ', x)
local 3
enclosing function locals 2
global 1
# Python内建函数的变量
x = int(0.22)
# 全局变量
x = 1
def foo():
# 外部函数变量
x = 2
def innerfoo():
# 局部变量
# x = 3 ##### 被注释掉了
print('local ', x)
innerfoo()
print('enclosing function locals ', x)
foo()
print('global ', x)
local 2
enclosing function locals 2
global 1
# Python内建函数的变量
x = int(0.22)
# 全局变量
x = 1
def foo():
# 外部函数变量
# x = 2 ###注释
def innerfoo():
# 局部变量
# x = 3 ###注释
print('local ', x)
innerfoo()
print('enclosing function locals ', x)
foo()
print('global ', x)
local 1
enclosing function locals 1
global 1
# Python内建函数的变量
x = int(0.22)
# 全局变量
# x = 1
def foo():
# 外部函数变量
# x = 2
def innerfoo():
# 局部变量
#x = 3
print('local ', x)
innerfoo()
print('enclosing function locals ', x)
foo()
print('global ', x)
local 0
enclosing function locals 0
global 0
其实一般不会用到外部嵌套函数的作用域,所以只要记得Python内建函数作用域 > 全局变量作用域 > 局部变量作用域就好了