https://stackoverflow.com/questions/3718657/how-to-properly-determine-current-script-directory-in-python
比较常用的是下面这句
os.path.dirname(os.path.abspath(__file__))
但是如果使用exec的话,上述办法行不通,得使用下面这种更通用的办法:
filename = inspect.getframeinfo(inspect.currentframe()).filename
path = os.path.dirname(os.path.abspath(filename))