1. 程式人生 > >os.path.dirname(__file__)使用、Python os.path.abspath(__file__)使用

os.path.dirname(__file__)使用、Python os.path.abspath(__file__)使用

import os

def file_path():
    '''開啟當前執行指令碼的絕對路徑'''
    paths=os.path.dirname(__file__)
    print paths
    '''切割路徑'''
    newpaths=paths.split('/')[0]
    print newpaths
    '''開啟完整路徑'''
    new=os.path.abspath(__file__)
    print new

os.path.abspath(__file__)返回的是.py檔案的絕對路徑(完整路徑)

os.path.dirname(__file__)返回的是.py檔案的目錄

執行結果如下: