标签: python python-2.7
我感兴趣的是如何从另一个python脚本导入函数,该扩展名不应该是.py(例如.pyf)。换句话说,我想以某种方式取代:
from Math import Calculate
到
from 'Math.pyf' import Calculate
怎么做?