1. 程式人生 > >Python import用法

Python import用法

官方文件說明: 

Python code in one module gains access to the code in another module by the process of importing it. 

Python import可以實現一個模組訪問另一個模組。

 

匯入包

import package

匯入一個或者多個模組,併為模組起別名

import module1 as module1_alias, module2 as module2_alias, ...

匯入包中的模組

from package import module

匯入模組中的元素(類、變數、函式等等)

from module import module_element

 

參考連結:

https://docs.python.org/3/reference/import.html