美文网首页
Python获取当前路径

Python获取当前路径

作者: king2king | 来源:发表于2019-09-26 16:26 被阅读0次
    import os
    print(os.getcwd()) # 获得当前工作目录
    print(os.path.abspath('.')) # 获得当前工作目录
    print(os.path.abspath('..')) # 获得当前工作目录的父目录
    print(os.path.abspath(os.curdir)) # 获得当前工作目录
    
    image.png

    相关文章

      网友评论

          本文标题:Python获取当前路径

          本文链接:https://www.haomeiwen.com/subject/fkrructx.html