(1).当"print os.path.dirname(__file__)"所在脚本是以完整路径被运行的, 那么将输出该脚本所在的完整路径,比如:
 
             python d:/pythonSrc/test/test.py
 
             那么将输出 d:/pythonSrc/test
 
     (2).当"print os.path.dirname(__file__)"所在脚本是以相对路径被运行的, 那么将输出空目录,比如:
 
             python test.py
 
             那么将输出空字符串

相关文章:

  • 2022-12-23
  • 2021-08-17
  • 2022-12-23
  • 2021-08-31
  • 2022-12-23
  • 2021-11-23
  • 2022-02-19
  • 2022-12-23
猜你喜欢
  • 2022-01-24
  • 2021-05-20
  • 2021-06-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案