python之命名空間知識點整理

2021-10-24 14:52:38 字數 2249 閱讀 9165

python直譯器在載入py檔案時在記憶體中開闢的空間,該空間使用字典來存放物件與值。字典的鍵儲存了py檔案中的變數名、方法名、類名及其他環境變數名,對應的值儲存了該物件的值(或記憶體位址或none)。

print(globals())

out:

, '__builtins__': , '__file__': 'd:/python/函式/關於函式的案例.py', '__cached__': none}

全域性(global names)命名空間

python直譯器開始載入py檔案時創造的命名空間,儲存的物件包括全域性變數名、方法名、類名及其他環境變數。

全域性命名空間僅有乙個。

區域性(local names)命名空間

python直譯器在方法、類等執行時才會建立的臨時命名空間,儲存的物件是該方法或類內部的變數名、方法名等。

區域性命名空間可以有多個,方法執行時建立結束後銷毀。

方法內可定義方法:外層方法->外層區域性命名空間;內層方法->內層區域性命名空間。

內建(built-in names)命名空間

python直譯器用來儲存內部模組builtins中的方法。

內建命名空間僅有乙個。

內建(built-in)命名空間

全域性(global)命名空間

區域性(local)命名空間

呼叫物件時python會按如下順序查詢:

區域性(local)命名空間

非本地(enclosing)命名空間

全域性(global)命名空間

內建(built-in)命名空間

經過以上四步未能找到該物件名字時就會報錯。

在同乙個命名空間下,名字和物件是一 一對應的。在不同命名空間下,乙個名字可以存在三個物件:區域性物件、非本地物件、全域性物件,python會按照legb原則就近查詢。

text = 123

def out():

text = 456

print('out',text)

def inner():

text = 789

print('inner',text)

inner()

out()

print(text)

out:

out 456

inner 789

123

在內層方法中可以直接引用全域性(global)命名空間和非本地(enclosing)命名空間中的物件。

text1 = '全域性命名空間變數'

def out():

text2 = '外層命名空間變數'

def inner():

print(text1)

print(text2)

inner()

out()

out:

全域性命名空間變數

外層命名空間變數

在內層方法修改全域性(global)命名空間和非本地(enclosing)命名空間中的物件會報錯。

text1 = '全域性命名空間變數'

def out():

text2 = '外層命名空間變數'

def inner():

# unboundlocalerror: local variable 'text1' referenced before assignment

text1 += '在內層列印'

# unboundlocalerror: local variable 'text2' referenced before assignment

text2 += '在內層列印'

print(text1)

print(text2)

inner()

out()

如果確實需要修改,必須先宣告,然後才能修改。

text1 = '全域性命名空間變數'

def out():

text2 = '外層命名空間變數'

def inner():

global text1

nonlocal text2

text1 += '在內層修改'

text2 += '在內層修改'

print(text1)

print(text2)

inner()

out()

out:

全域性命名空間變數在內層修改

外層命名空間變數在內層修改

Python知識點整理

參考 python.doc 廖雪峰的python教程 使用 將兩行 為一行 if 1900 year 2100 and1 month 12 and1 day 31 and0 hour 24 and0 minute 60 and0 second 60 looks ike a valid date re...

python知識點整理

1 python列表和元祖 python包含6中內建的序列,即列表 元組 字串 unicode字串 buffer物件和xrange物件。通用序列操作 索引 分片 序列相加 乘法 成員資格 in 長度 len 最小值 min 和最大值 max 2 python字典 花括號 字典是另一種可變容器模型,且...

知識點 1 4 4 命名空間

總目錄 1 語言基礎 1.4 c 語言基礎 1.4.4 命名空間 前言 可能是目前最簡短的一篇?因為實在不知道可以和哪一篇一起講了。更新日誌 20200903 增加作用域和全域性 區域性變數的介紹。20211023 作用域 全域性 區域性變數等內容移至 1.2 c 語言高階。1.4.4 命名空間 c...