在b.py文件中用下面两条语句即可完成对a.py文件中func( )函数的调用
import a #引用模块 a.func( )
或者是
import a #引用模块 from a import func #引用模块中的函数 func() #这里调用函数就不需要加上模块名的前缀了