要設置當前工作路徑,可以使用os
模塊中的chdir()
函數。
import os
# 獲取當前工作路徑
current_path = os.getcwd()
print("當前工作路徑:", current_path)
# 設置新的工作路徑
new_path = "/path/to/new/directory"
os.chdir(new_path)
# 檢查新的工作路徑
current_path = os.getcwd()
print("新的工作路徑:", current_path)
在上面的例子中,首先使用os.getcwd()
函數獲取當前工作路徑,然后使用os.chdir()
函數設置新的工作路徑。最后再次使用os.getcwd()
函數來驗證設置是否成功。