前言
如果你在 51 Testting 上面見到這篇文章,不要以為我是盜版哦!因為那是我投稿的文章
模組和包的定義
模組的定義:任何 *.py 的檔案都可以當作模組使用 import 匯入
包的定義:包含一個__init__.py和其他模組、其他子包的一個目錄
實際專案中,所謂的包和模組分別代表什麼,如下:
包就是指 test
模組就是 do_excel.py , http_request.py , run.py
匯入包的各種方法
我們以上面這個目錄講解,在 run.py 檔案中匯入各個包的方式
匯入單個test包
import test
匯入report、log包
# 同時匯入,用逗號隔開,牆裂推薦 import report, log # 分開匯入 import report import log
匯入單個test包,並起別名
import test as t
匯入report、log包,並都起別名
import report as r, log as l
匯入project包下的old包
import project.old
匯入project包下的old包下的test包
# 方式一:鏈式呼叫 import project.old.test # 方式二:from .. import .. from project.old import test
到這裡先總結下知識點
import後面跟的包名也是單位變數名(自己取的方便理解)
什麼意思?以上面old包下的test包舉例
場景:假設我要呼叫test包下的 test.py 裡面的 run() 方法
如果用的是方式一,就得這樣寫
project.old.test.test.run()
而方式二,則是這樣寫
test.test.run()
可以看到import後面跟什麼“變數”,當你要呼叫包、模組裡面的東西時,你就得先寫“變數”再呼叫包名、模組名
我們可以再來看看下面的總結
- import:完全匯入
- from .. import ..:部分匯入(針對性匯入)
怎麼區分它們的意思捏?我們來看看哈;在根目錄下的 test 包下的 run.py 程式碼如下
#!/usr/bin/env python # -*- coding: utf-8 -*- num =1 floats = 2.22 strs = "字串" def sum(): print("我是sum") class test(): def test(self): print("test class")
假設,在專案中其他檔案中想呼叫 run.py 下的變數、函式名、類名
匯入其他模組的變數、函式名、類名
方式一:import方式
匯入的是 run 模組裡面所有內容(包括變數、函式、類名),但是還是得通過 test.run 去鏈式呼叫
import test.run # 呼叫num變數 print(test.run.num) # 輸出1 # 呼叫sum方法 print(test.run.sum()) # 輸出 我是sum
有些小夥伴就想問,難道我不能指定變數、函式名、類名嗎?讓我們來試試
#!/usr/bin/env python # -*- coding: utf-8 -*- import test.run.num # 呼叫num變數 print(test.run.num)
首先,如果你用的是Pycharm,在import最後的num會報黃,hover上去會提有提示 No module named num
然後,執行下檔案會報錯如下
Traceback (most recent call last): File "F:/test/tests.py", line 5, in <module> import test.run.num,test.run.floats ModuleNotFoundError: No module named 'test.run.num'; 'test.run' is not a package
錯誤的大概意思就是: test.run.num 不是一個模組名, test.run 不是一個包
可以看到import的完全匯入意思就是:匯入最小單位是模組,而不是變數、函式名、類名
方式二:from .. import ..
# from 包名.模組名 import 變數/函式/類名 from test.run import num from test.run import sum from test.run import testss from test.run import floats if __name__ == '__main__': print(num) print(sum()) print(testss().test()) print(floats)
執行結果
1 我是sum test class 2.22
可以看到from .. import .. 的部分匯入意思就是:匯入最小單位可以是模組,也可以是變數、函式名、類名
匯入模組的方法
根據上面講的知識,如果要匯入模組有兩種方式,一個就是 import 模組名 一個就是 from 包名 import 模組名
匯入test包下的run模組
# import import test.run # from from run import test
匯入test包下的run、tests模組
# import import test.run,test.tests # from from run import test,tests
特別知識
提問:import 包/模組,包和模組是從哪裡匯入的?
回答:我們是通過 sys.path 所包含的路徑列表你下,按順序查詢的
怎麼理解?
在Pycharm工程下敲以下程式碼
import sys print(sys.path)
執行結果
['F:\\moocInterface\\test', 'F:\\moocInterface', 'D:\\PyCharm 2019.3.1\\plugins\\python\\helpers\\pycharm_display', 'D:\\python3.6\\python36.zip', 'D:\\python3.6\\DLLs', 'D:\\python3.6\\lib', 'D:\\python3.6', 'D:\\python3.6\\lib\\site-packages', 'D:\\python3.6\\lib\\site-packages\\django-2.1.5-py3.6.egg', 'D:\\python3.6\\lib\\site-packages\\pytz-2018.9-py3.6.egg', 'D:\\PyCharm 2019.3.1\\plugins\\python\\helpers\\pycharm_matplotlib_backend']
可以看到:
- 當前檔案所在路徑是放在第一位
- 工程路徑放在第二位
- Pycharm相關路徑放在第三位
我們從系統cmd進入Python直譯器敲以下程式碼,檢視結果
>>> import sys >>> print(sys.path)
結果如下
['', 'D:\\python3.6\\python36.zip', 'D:\\python3.6\\DLLs', 'D:\\python3.6\\lib', 'D:\\python3.6', 'D:\\python3.6\\lib\\site-packages', 'D:\\python3.6\\lib\\site-packages\\django-2.1.5-py3.6.egg', 'D:\\python3.6\\lib\\site-packages\\pytz-2018.9-py3.6.egg']
結論:
我們在Pycharm下import的包、模組,優先會在工程目錄下尋找,找不到才會從Python預設安裝路徑下找