参考文献:法1:import module1使用:这样你调用时就得:module1.funct(),funct2(),...法2:from module1 import funct()使用就直接:funct()法3:类似法2地,from module1 import *使用就直接:funct()