append user_defined direction to python interpreter sys.path

返回当前文件的路径(一些python版本会返回文件名,但在现在的python3中基本可以返回当前文件的路径.)?

 __file__
 print(__file__)

把一个文件增加到python解释器列表的方法?

sys.path.append(文件的路径)

返回当前文件所在的目录的路径?

 os.path.dirname(__file__)

返回当前文件所在的绝对路径?

os.path.abspath(__file__)

把一个文件增加到python解释器最保险的方式?

sys.path.append( os.path.dirname(os.path.abspath(__file__)))

append user_defined direction to python interpreter sys.path_第1张图片

你可能感兴趣的:(Python,学习类专栏,python)