在Python編程中,有時候需要獲得當前路徑的父路徑,可以用Python內建的os模塊來實現此功能。
import os # 獲取當前路徑 current_dir = os.getcwd() # 獲取父目錄路徑 parent_dir = os.path.dirname(current_dir) print(parent_dir)
上述代碼中,首先使用os.getcwd()函數獲取當前工作目錄的路徑,并將其賦給變量current_dir。然后,使用os.path.dirname()函數獲取current_dir的父目錄路徑,并將其賦給變量parent_dir。最后,將parent_dir打印輸出。
需要注意的是,os.path.dirname()函數只會返回傳入路徑的父路徑,而不會判斷父路徑是否存在。
通過以上代碼,我們可以簡單地實現Python中獲取父目錄的功能。