利用os.path.abspath获取脚本绝对路径

最近写点python,得动不动更改路径。
【利用os.path.abspath获取脚本绝对路径】import os
basedir = os.path.abspath(os.path.dirname(file))
print(basedir)

    推荐阅读