2019年3月13日 星期三

[python] How to get the directory of your module

import sys
from os.path import dirname
module_path = dirname(sys.modules[__name__].__file__)