【Python基础教程】变量的作用域详解
生活随笔
收集整理的這篇文章主要介紹了
【Python基础教程】变量的作用域详解
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
變量作用域
- Python 能夠改變變量作用域的代碼段是 def 、 class 、 lamda.
- if/elif/else、try/except/finally、for/while 并不能涉及變量作用域的更改,也就是在這些代碼塊中的變量,外部也是可以訪問的
- 變量搜索路徑是:局部變量->全局變量
局部變量 vs 全局變量
- 局部變量:在函數內部,類內部,lamda.的變量,它的作用域僅在函數、類、lamda 里面
- 全局變量:在當前 py 文件都生效的變量
global的作用
讓局部變量變成全局變量
def tests():global varsvars = 6tests() print(vars)執行結果
6注意
先 global 聲明一個變量,再給這個變量賦值,不能直接 global vars = 6 ,會報錯!!
if/elif/else、try/except/finally、for/while
# while while True:var = 100break print(var)# try except try:var = 111raise Exception except:print(var)print(var)# if if True:var = 222print(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 = 555print(var)執行結果
100 111 111 222 333 444 555變量搜索路徑是:局部變量->全局變量
''' 學習中遇到問題沒人解答?小編創建了一個Python學習交流QQ群:725638078 尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書! ''' def test():var = 6print(var) #var = 5 print(var) test() print(var)執行結果
5 6 5Python 的 LEGB 規則
- L-Local(function);函數內的變量
- E-Enclosing function locals;外部嵌套函數的變量
- G-Global(module);函數定義所在模塊的變量
- B-Builtin(Python);Python內建函數的名字空間
這是我們代碼找變量的順序,倘若最后一個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']LEGB的例子
# Python內建函數的變量 x = int(0.22)# 全局變量 x = 1def foo():# 外部函數變量x = 2def innerfoo():# 局部變量x = 3print('local ', x)innerfoo()print('enclosing function locals ', x)foo() print('global ', x)執行結果
local 3 enclosing function locals 2 global 1當我們改動下代碼,把局部變量注釋
''' 學習中遇到問題沒人解答?小編創建了一個Python學習交流QQ群:725638078 尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書! ''' # Python內建函數的變量 x = int(0.22)# 全局變量 x = 1def foo():# 外部函數變量x = 2def 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 = 1def 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 = 1def foo():# 外部函數變量# x = 2def innerfoo():# 局部變量#x = 3print('local ', x)innerfoo()print('enclosing function locals ', x)foo() print('global ', x)執行結果
local 0 enclosing function locals 0 global 0注意
其實一般不會用到外部嵌套函數的作用域,所以只要記得Python內建函數作用域 > 全局變量作用域 > 局部變量作用域就好了
結尾給大家推薦一個非常好的學習教程,希望對你學習Python有幫助!
Python基礎入門教程推薦:更多Python視頻教程-關注B站:Python學習者
https://www.bilibili.com/video/BV1LL4y1h7ny?share_source=copy_web
Python爬蟲案例教程推薦:更多Python視頻教程-關注B站:Python學習者
https://www.bilibili.com/video/BV1QZ4y1N7YA?share_source=copy_web
總結
以上是生活随笔為你收集整理的【Python基础教程】变量的作用域详解的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 在学习Python中,这个知识我们一定要
- 下一篇: Python中深浅拷贝的案例教程