I am interested how I can import function from another python script, which extension should be not .py (for example .pyf). In other words I want somehow to replace:
from Math import Calculate
to
from 'Math.pyf' import Calculate
How to do that?