1. 程式人生 > >python獲取父路徑

python獲取父路徑

import os
#獲取父路徑
def get_aft_path():
    return os.getcwd()
#獲取父路徑
def get_aft_parent_path():
    return os.path.abspath('')
可以通過os.path.abspath('..')返回多層路徑