Import意思
"import" 是一個 Python 關鍵字,用於導入模組或模組中的特定函式、類或變數到當前命名空間,以便在當前檔案中使用。
例如,如果你想要使用 Python 標準庫中的 "math" 模組,你可以在你的 Python 檔案中使用以下代碼來導入整個模組:
import math
這樣,你就可以在代碼中使用 "math" 模組中的任何函式,比如:
import math
# 使用 math 模組中的 sqrt 函式
print(math.sqrt(16)) # 輸出 4
你也可以使用 "from ... import" 語法來導入模組中的特定部分:
from math import sqrt
# 現在可以直接使用 sqrt 函式,不需要使用 math.sqrt
print(sqrt(16)) # 輸出 4
或者,你可以使用 "as" 別名來為模組或函式指定一個別名:
import math as m
# 現在可以使用 m 來代替 math
print(m.sqrt(16)) # 輸出 4
或者:
from math import sqrt as square_root
# 現在可以使用 square_root 來代替 math.sqrt
print(square_root(16)) # 輸出 4
在 Python 中,導入模組是使用模組名來訪問模組中的定義和函式的一種方式。