在Python中,模塊導入的方法有以下幾種:
import math
from math import sqrt
import math as m
from math import sqrt as square_root
from math import *
需要注意的是,雖然使用*可以導入所有內容,但是不推薦在代碼中使用這種方式,因為它會導入模塊中的所有名稱,容易導致命名沖突和代碼可讀性差。
另外,還有一些更高級的導入方法,如動態導入(例如使用importlib模塊的import_module函數),但在大部分情況下上述四種方法已經足夠使用。