举例说明
一般使用 import math 或者 from scipy import stats
import math
from scipy import stats
不建议使用 from math import * (如果存在相同名称的函数名,会被覆盖)
from math import *