Python中import機制

来源:http://www.cnblogs.com/yan-lei/archive/2017/11/13/7828871.html
-Advertisement-
Play Games

Python語言中import的使用很簡單,直接使用import module_name語句導入即可。這裡我主要寫一下"import"的本質。 Python官方定義:Python code in one module gains access to the code in another modul ...


Python語言中import的使用很簡單,直接使用import module_name語句導入即可。這裡我主要寫一下"import"的本質。

Python官方定義:Python code in one module gains access to the code in another module by the process of importing it.

1.定義:

模塊(module):用來從邏輯(實現一個功能)上組織Python代碼(變數、函數、類),本質就是*.py文件。文件是物理上組織方式"module_name.py",模塊是邏輯上組織方式"module_name"。

包(package):定義了一個由模塊和子包組成的Python應用程式執行環境,本質就是一個有層次的文件目錄結構(必須帶有一個__init__.py文件)。

2.導入方法

# 導入一個模塊
import model_name
# 導入多個模塊
import module_name1,module_name2
# 導入模塊中的指定的屬性、方法(不加括弧)、類
from moudule_name import moudule_element [as new_name]

方法使用別名時,使用"new_name()"調用函數,文件中可以再定義"module_element()"函數。

3.import本質(路徑搜索和搜索路徑)

moudel_name.py

# -*- coding:utf-8 -*-
print("This is module_name.py")

name = 'Hello'

def hello():
    print("Hello")

module_test01.py

# -*- coding:utf-8 -*-
import module_name

print("This is module_test01.py")
print(type(module_name))
print(module_name)
運行結果:
E:\PythonImport>python module_test01.py
This is module_name.py
This is module_test01.py
<class 'module'>
<module 'module_name' from 'E:\\PythonImport\\module_name.py'>

在導入模塊的時候,模塊所在文件夾會自動生成一個__pycache__\module_name.cpython-35.pyc文件。

"import module_name" 的本質是將"module_name.py"中的全部代碼載入到記憶體並賦值給與模塊同名的變數寫在當前文件中,這個變數的類型是'module';<module 'module_name' from 'E:\\PythonImport\\module_name.py'>


module_test02.py

# -*- coding:utf-8 -*-
from module_name import name

print(name)
運行結果;
E:\PythonImport>python module_test02.py
This is module_name.py
Hello

"from module_name import name" 的本質是導入指定的變數或方法到當前文件中。


package_name / __init__.py

# -*- coding:utf-8 -*-

print("This is package_name.__init__.py")

module_test03.py

# -*- coding:utf-8 -*-
import package_name

print("This is module_test03.py")
運行結果:
E:\PythonImport>python module_test03.py
This is package_name.__init__.py
This is module_test03.py

"import package_name"導入包的本質就是執行該包下的__init__.py文件,在執行文件後,會在"package_name"目錄下生成一個"__pycache__ / __init__.cpython-35.pyc" 文件。

package_name / hello.py

# -*- coding:utf-8 -*-

print("Hello World")

package_name / __init__.py

# -*- coding:utf-8 -*-
# __init__.py文件導入"package_name"中的"hello"模塊
from . import hello
print("This is package_name.__init__.py")
運行結果:
E:\PythonImport>python module_test03.py
Hello World
This is package_name.__init__.py
This is module_test03.py

在模塊導入的時候,預設現在當前目錄下查找,然後再在系統中查找。系統查找的範圍是:sys.path下的所有路徑,按順序查找。

4.導入優化

module_test04.py

# -*- coding:utf-8 -*-
import module_name 

def a():
    module_name.hello()
    print("fun a")

def b():
    module_name.hello()
    print("fun b")

a()
b()
運行結果:
E:\PythonImport>python module_test04.py
This is module_name.py
Hello
fun a
Hello
fun b

多個函數需要重覆調用同一個模塊的同一個方法,每次調用需要重覆查找模塊。所以可以做以下優化:

module_test05.py

# -*- coding:utf-8 -*-
from module_name import hello 

def a():
    hello()
    print("fun a")

def b():
    hello()
    print("fun b")

a()
b()
運行結果:
E:\PythonImport>python module_test04.py
This is module_name.py
Hello
fun a
Hello
fun b

可以使用"from module_name import hello"進行優化,減少了查找的過程。

5.模塊的分類

內建模塊

可以通過 "dir(__builtins__)" 查看Python中的內建函數

>>> 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', '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', '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']

非內建函數需要使用"import"導入。Python中的模塊文件在"安裝路徑\Python\Python35\Lib"目錄下。

第三方模塊

通過"pip install "命令安裝的模塊,以及自己在網站上下載的模塊。一般第三方模塊在"安裝路徑\Python\Python35\Lib\site-packages"目錄下。

自定義模塊


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 今天時開通博客的第一天,呃,第二天了,昨晚收到郵件,犯懶了,沒有實踐自己每日記錄的諾言,自打臉【尷尬】。 最近以及很長一段時間,我的博客將主要是記錄我在Java 前臺和後臺學習實踐中遇到的一些錯誤和經驗,已經自己在各路資料上遇到的各種問題和自己的總結。所以我會在每篇的末尾立下flag ,進行提醒以便 ...
  • 本節內容 - 開篇 - 棧(Stack) - 隊列(Queue) - 緩衝區(Pool) - 鏈表(Linked List) ...
  • 一、關於 Python Python 是全球使用人數增長最快的編程語言!它易於入門、功能強大,從 Web 後端 到 數據分析、人工智慧,到處都能看到 Python 的身影。 Python 有兩個主要的版本 Python 2.x 和 Python 3.x。咪博士推薦大家學習 Python 3.x。本系 ...
  • 上次我們學習了環形鏈表的數據結構,那麼接下來我們來一起看看下麵的問題, 判斷一個單向鏈表是否是環形鏈表? 看到這個問題,有人就提出了進行遍歷鏈表,記住第一元素,當我們遍歷後元素再次出現則是說明是環形鏈表,如果沒有這是一個單向非環形鏈表。 我們來分析下上述的解決方法,我們分析這個程式的時間複雜度則是O ...
  • 使用QNetworkAccessManager實現Qt的FTP下載操作,此外包含以下功能:(1)添加下載超時操作;(2)大文件分割下載。 附加C++實現命令行輸出進度條實現代碼。 ...
  • 問題: 我正嘗試使用matplotlib讀取RGB圖像並將其轉換為灰度。在matlab中,我使用這個: 1 img = rgb2gray(imread('image.png')); 1 img = rgb2gray(imread('image.png')); 1 img = rgb2gray(imr ...
  • 我是Django的新手,我試圖通過我正在開發的一個簡單的項目“dubliners”和一個名為“book”的應用程式來學習它。目錄結構如下所示: 1 2 dubliners/book/ [includes models.py, views.py, etc.] dubliners/templates/b ...
  • 最近AlphaGo Zero的發佈,深度學習又火了一把,小伙伴們按捺不住內心的躁動,要搞一個游戲AI,好吧,那就從規則簡單、老少皆宜的五子棋開始講起。要做AI,得現有場景,所以本文先實現一個五子棋的邏輯。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...