os模組是與作業系統互動的乙個介面
print
(os.getcwd())
輸出:f:\codefile\16\21
print
(os.getcwd())
os.chdir(
'211'
)print
(os.getcwd())
輸出:f:\codefile\16\21
輸出:[
輸出:(
)#列印f:\codefile\python1\22\conf\01.py
print
(os.path.dirname(os.path.abspath(__file__)))
#列印f:\codefile\python1\22\conf
print
(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
)#列印f:\codefile\python1\22
from core import lo #匯入模組
lo.pp(
)#列印hhg
Python 模組學習 os模組
一 os模組概述 python os模組包含普遍的作業系統功能。如果你希望你的程式能夠與平台無關的話,這個模組是尤為重要的。一語中的 二 常用方法 1 os.name 輸出字串指示正在使用的平台。如果是window 則用 nt 表示,對於linux unix使用者,它是 posix 2 os.get...
Python 模組學習 os模組
一 os模組概述 python os模組包含普遍的作業系統功能。如果你希望你的程式能夠與平台無關的話,這個模組是尤為重要的。一語中的 二 常用方法 1 os.name 輸出字串指示正在使用的平台。如果是window 則用 nt 表示,對於linux unix使用者,它是 posix 2 os.get...
Python 模組學習 os模組
os模組提供了多個訪問作業系統服務的功能 os.name 顯示當前使用平台 os.getcwd 顯示當前python指令碼工作路徑 os.listdir dirname 顯示目錄dirname下的所有檔案和目錄名 os.remove filename 刪除乙個檔案 os.makedirs dirna...