天天看点

python的os.path.realpath(__file__),os.getcwd(),sys.path() 的区别

os.getcwd() sys.path 返回的是运行脚本的绝对路径sys.path,os.path.realpath(__file__)返回的是绝对路径+文件名。但是,比如你想在fir目录下的fir.py调用sec目录下的sec.py,sec.py分别写有3种获得路径的模式,如果你想要获得sec.py的路径信息,那么就需要使用sys.path.realpath.如图,一目了然。

python的os.path.realpath(__file__),os.getcwd(),sys.path() 的区别

继续阅读