溫馨提示×

python怎么獲取當(dāng)前路徑

小億
83
2024-03-16 16:07:36
欄目: 編程語言

要獲取當(dāng)前路徑,可以使用Python的os模塊中的方法來實現(xiàn)。具體步驟如下:

import os

current_path = os.getcwd()
print("當(dāng)前路徑為:", current_path)

上述代碼中,os.getcwd()方法會返回當(dāng)前工作目錄的絕對路徑,然后將其賦值給current_path變量,并打印出來。這樣就可以獲取當(dāng)前路徑了。

0