python modules location code example
Example 1: python find location of module
import mymodule
mymodule.__file__
Example 2: how to find where python modules are installed
# this will show where numpy is installed
pip show numpy
import mymodule
mymodule.__file__
# this will show where numpy is installed
pip show numpy