26.python 模組import

  • 2020 年 3 月 12 日
  • 筆記

26.python 模組import

最後更新於:2019-10-31 10:02:59

一.模組簡介

python開發中,每一個.py文件都可以看作是一個模組,模組內部的函數或者方法可以被其他模組調用,至於函數或者方法是具體如何實現的,調用者不需要關心。

假如項目中既含有UI也有邏輯程式碼還有功能實現,如果全寫在一個py文件,可能會有幾萬甚至十幾萬行程式碼,顯得程式碼很臃腫,為了方便程式碼閱讀和維護,我們可以將項目拆分為多個模組,不同的模組實現不同的功能,這樣分工合作開發效率也高,而且就算出現bug也方便定位。

二.模組分類

1.系統內置模組

python中有一些內置模組我們直接調用,比如:sys、time、json等,具體使用方法我們在調用模組中詳細講解;

2.第三方開源模組

安裝第三方開源模組,可以直接cmd打開控制台或者打開pycharm終端運行 pip install <模組名> 即可,前提是anacoanda已經安裝正確,例如:學習爬蟲的時候需要安裝request

Python

pip install request

1

pip install request

3.自定義模組

除了前面兩種模組,我們也可以自己寫模組來供自己調用,具體實現什麼功能有自己決定,在後面的模組調用中會有詳細講解,值得注意的是:模組名字不能和內置模組名字一樣,會造成衝突;

三.調用模組

使用 import關鍵字 導入模組,並放置在程式碼最開始位置;同一個模組不管執行了多少次 import <模組名>,實際上只會被導入一次。

為了講解關於模組的調用方法,假如我們有一個計算加減乘除的模組文件calculator.py,程式碼如下:

Python

# !usr/bin/env python # -*- coding:utf-8 _*- """ @Author:何以解憂 @Blog(個人部落格地址): shuopython.com @WeChat Official Account(微信公眾號):猿說python @Github:www.github.com @File:calculator.py @Time:2019/10/11 21:25 @Motto:不積跬步無以至千里,不積小流無以成江海,程式人生的精彩需要堅持不懈地積累! """ # 定義一個全局變數 name = "calculator" # 加法 def add(x,y): return x+y # 減法 def sub(x,y): return x-y # 乘法 def multiplication(x,y): return x*y # 除法 def division(x,y): return x/y # 使用內置函數eval計算表達式的結果,如果表達式有誤,直接拋異常 def get_result(input_str): try: return eval(input_str) except Exception as e: print("表達式輸入異常!") return None

12345678910111213141516171819202122232425262728293031323334353637383940

# !usr/bin/env python# -*- coding:utf-8 _*-"""@Author:何以解憂@Blog(個人部落格地址): shuopython.com@WeChat Official Account(微信公眾號):猿說python@Github:www.github.com @File:calculator.py@Time:2019/10/11 21:25 @Motto:不積跬步無以至千里,不積小流無以成江海,程式人生的精彩需要堅持不懈地積累!""" # 定義一個全局變數name = "calculator" # 加法def add(x,y):    return x+y # 減法def sub(x,y):    return x-y # 乘法def multiplication(x,y):    return x*y # 除法def division(x,y):    return x/y # 使用內置函數eval計算表達式的結果,如果表達式有誤,直接拋異常def get_result(input_str):    try:        return eval(input_str)    except Exception as e:        print("表達式輸入異常!")        return None

如果已經忘記python 異常處理的小夥伴請參考:  python 異常處理詳細講解

1.import <模組名>

新建一個py文件,用於調用模板文件 calculator.py 中的函數,程式碼如下:

Python

# 導入模組 import calculator # 調用calculator模組中的add函數 : 模組名.函數名 或者 模組名.變數名 result = calculator.add(2,5) print(result) # 調用calculator模組中的sub函數 : 模組名.函數名 或者 模組名.變數名 result = calculator.sub(2,5) print(result) # 調用calculator模組中的multiplication函數 : 模組名.函數名 或者 模組名.變數名 result = calculator.multiplication(2,5) print(result) # 調用calculator模組中的add函數 : 模組名.函數名 或者 模組名.變數名 result = calculator.division(2,5) print(result) # 調用calculator模組中的get_result函數 : 模組名.函數名 或者 模組名.變數名 result = calculator.get_result("3+2*8-40") print(result) # 調用calculator模組中的name變數 : 模組名.函數名 或者 模組名.變數名 print(calculator.name)

12345678910111213141516171819202122232425

# 導入模組import calculator # 調用calculator模組中的add函數 : 模組名.函數名  或者 模組名.變數名result = calculator.add(2,5)print(result) # 調用calculator模組中的sub函數 : 模組名.函數名  或者 模組名.變數名result = calculator.sub(2,5)print(result) # 調用calculator模組中的multiplication函數 : 模組名.函數名  或者 模組名.變數名result = calculator.multiplication(2,5)print(result) # 調用calculator模組中的add函數 : 模組名.函數名  或者 模組名.變數名result = calculator.division(2,5)print(result) # 調用calculator模組中的get_result函數 : 模組名.函數名  或者 模組名.變數名result = calculator.get_result("3+2*8-40")print(result) # 調用calculator模組中的name變數 : 模組名.函數名  或者 模組名.變數名print(calculator.name)

輸出結果:

Python

7 -3 10 0.4 -21 calculator

123456

7-3100.4-21calculator

注意:調用模組中的函數時需要指明函數或者變數來自哪個模板:<模組名>.函數名    <模組名>.變數名

2.from <模組名> import <函數或者變數>,<函數或者變數>,<函數或者變數>…..

做一個簡單理解,從哪個模組導入哪些函數或者變數,外部導入模組後調用時只能調用導入的函數或者變數,模組中沒有導入的變數或者函數不能調用,示例程式碼如下:

Python

''' 從模組calculator中導入add,sub兩個函數, 意味著調用calculator模組時,只能調用add,sub兩個函數, calculator 模組中的其他變數或者函數無法調用 ''' from calculator import add,sub # 在程式碼頂部已經聲明add函數從calculator導入,可以直接使用,不需要帶上模板名 result = add(2,5) print(result) # 在程式碼頂部已經聲明sub函數從calculator導入,可以直接使用,不需要帶上模板名 result = sub(2,5) print(result) # 錯誤寫法:該模組並沒有導入name變數 # result = multiplication(2,5) # 錯誤寫法:該模組並沒有導入name變數 # result = division(2,5) # 錯誤寫法:該模組並沒有導入name變數 # result = calculator.get_result("3+2*8-40") # 錯誤寫法:該模組並沒有導入name變數 # print(calculator.name)

123456789101112131415161718192021222324252627

'''從模組calculator中導入add,sub兩個函數,意味著調用calculator模組時,只能調用add,sub兩個函數,calculator 模組中的其他變數或者函數無法調用''' from calculator import add,sub # 在程式碼頂部已經聲明add函數從calculator導入,可以直接使用,不需要帶上模板名result = add(2,5)print(result) # 在程式碼頂部已經聲明sub函數從calculator導入,可以直接使用,不需要帶上模板名result = sub(2,5)print(result) # 錯誤寫法:該模組並沒有導入name變數# result = multiplication(2,5) # 錯誤寫法:該模組並沒有導入name變數# result = division(2,5) # 錯誤寫法:該模組並沒有導入name變數# result = calculator.get_result("3+2*8-40") # 錯誤寫法:該模組並沒有導入name變數# print(calculator.name)

3.from <模組名> import *

這種寫法表示直接導入模組中的所有內容,意味著模組中的函數或者變數都可以使用,該寫法實際上和第二種導入方法類似,示例程式碼如下:

Python

# 導入calculator 模組中所有函數和變數 from calculator import * # 在程式碼頂部已經聲明導入calculator模組所有內容,可以直接使用,不需要帶上模板名 result = add(2,5) print(result) # 在程式碼頂部已經聲明導入calculator模組所有內容,可以直接使用,不需要帶上模板名 result = sub(2,5) print(result) # 在程式碼頂部已經聲明導入calculator模組所有內容,可以直接使用,不需要帶上模板名 result = multiplication(2,5) print(result) # 在程式碼頂部已經聲明導入calculator模組所有內容,可以直接使用,不需要帶上模板名 result = division(2,5) print(result) # 在程式碼頂部已經聲明導入calculator模組所有內容,可以直接使用,不需要帶上模板名 result = get_result("3+2*8-40") print(result) # 在程式碼頂部已經聲明導入calculator模組所有內容,可以直接使用,不需要帶上模板名 print(name)

12345678910111213141516171819202122232425

# 導入calculator 模組中所有函數和變數from calculator import * # 在程式碼頂部已經聲明導入calculator模組所有內容,可以直接使用,不需要帶上模板名result = add(2,5)print(result) # 在程式碼頂部已經聲明導入calculator模組所有內容,可以直接使用,不需要帶上模板名result = sub(2,5)print(result) # 在程式碼頂部已經聲明導入calculator模組所有內容,可以直接使用,不需要帶上模板名result = multiplication(2,5)print(result) # 在程式碼頂部已經聲明導入calculator模組所有內容,可以直接使用,不需要帶上模板名result = division(2,5)print(result) # 在程式碼頂部已經聲明導入calculator模組所有內容,可以直接使用,不需要帶上模板名result = get_result("3+2*8-40")print(result) # 在程式碼頂部已經聲明導入calculator模組所有內容,可以直接使用,不需要帶上模板名print(name)

輸出:

Python

7 -3 10 0.4 -21 calculator

123456

7-3100.4-21calculator

使用該方法導入模組時有一個缺陷:如果同時導入多個模組文件,如果模組中的函數或者變數重名,編譯器也不知道具體是用哪一個模組重名的函數或者變數,會造成意想不到的bug,往往這種bug最難查找!

四.簡單的計算器

利用上面的calculator模組,再加上前面的python基礎知識,其實我們已經可以寫一個簡單的計算器了,唯獨沒有介面而已,至於介面後面會有pyqt5的教程,暫時不做過多講解。計算器程式碼如下:

Python

# 導入內置模組time,計算耗時,默認單位秒 import time # 導入calculator 模組 import calculator while True: # 獲取表達式 input_str = input("請輸入表達式:") if input_str == 'q': # 輸入 q 退出程式 break time_start = time.clock() print(calculator.get_result(input_str)) time_end = time.clock() # 將 秒 轉為 毫秒 print("計算耗時:{}毫秒".format((time_end-time_start)*1000)) print("退出計算,程式結束!")

123456789101112131415161718

# 導入內置模組time,計算耗時,默認單位秒import time# 導入calculator 模組import calculator  while True:    # 獲取表達式    input_str = input("請輸入表達式:")    if input_str == 'q': # 輸入 q 退出程式        break    time_start = time.clock()    print(calculator.get_result(input_str))    time_end = time.clock()    # 將 秒 轉為 毫秒    print("計算耗時:{}毫秒".format((time_end-time_start)*1000)) print("退出計算,程式結束!")

測試結果:

五.重點總結

1.注意模組的幾種導入方式,python開發中推薦使用寫法一的方式導入:import <模組名>;

2.注意內置函數和內置模組的區別:內置函數是任何模組都可以直接調用,內置模組需要import模組之後才能調用模組裡面的函數;

3.不同的模組中可以存在相同的變數名或者函數名,但是不能與內置函數名或者內置模組名字重複,避免造成衝突;