当前位置: 代码迷 >> 综合 >> python的os.path.realpath(__file__),os.getcwd(),sys.path() 的区别
  详细解决方案

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

热度:41   发布时间:2023-10-23 19:18:52.0

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() 的区别

  相关解决方案