from scipy import interpolate as spi
要么
import scipy.interpolate as spi
两者似乎都将插入模块作为spi放在当前命名空间中
在这种特殊情况下,我会使用import scipy.interpolate作为spi,以记住interpolate是scipy的子模块.如果我要从模块导入函数,我将使用模块导入功能.
唯一的办法是,与您选择的惯例保持一致.