1. 程式人生 > >Python - 命名空間和作用域

Python - 命名空間和作用域

解釋器 啟動 pytho html hat tail htm log tutorial

參考

  1. https://blog.csdn.net/sakurainluojia/article/details/72783752
  2. https://docs.python.org/3.6/tutorial/classes.html

概念

技術分享圖片

A scope is a textual region of a Python program where a namespace is directly accessible. “Directly accessible” here means that an unqualified reference to a name attempts to find the name in the namespace.

即可以在靜態的作用域(本質是一段文本)中訪問動態的命名空間(解釋器啟動時創建)

Python - 命名空間和作用域