Python os.getcwd()用法及代碼示例- 純淨天空

文章推薦指數: 80 %
投票人數:10人

用法: os.getcwd(). 參數:不需要任何參數。

返回值:此方法返回代表當前工作目錄的字符串。

示例1: 使用 os.getcwd() 獲取當前工作目錄的方法. # Python program to ... 當前位置:首頁>>代碼示例 >>用法及示例精選 >>正文 操作係統模塊Python中的Windows提供了與操作係統進行交互的函數。

操作係統屬於Python的標準實用程序模塊。

該模塊提供了使用依賴於操作係統的函數的便攜式方法。

如果文件名和路徑無效或無法訪問,或者具有正確類型但操作係統不接受的其他參數,則os模塊中的所有函數都會引發OSError。

os.getcwd()方法告訴我們當前工作目錄(CWD)的位置。

用法:os.getcwd() 參數:不需要任何參數。

返回值:此方法返回代表當前工作目錄的字符串。

示例1: 使用os.getcwd()獲取當前工作目錄的方法 #Pythonprogramtoexplainos.getcwd()method           #importingosmodule  importos       #Getthecurrentworking  #directory(CWD)  cwd=os.getcwd()       #Printthecurrentworking   #directory(CWD)  print("Currentworkingdirectory:",cwd)  輸出: Currentworkingdirectory:C:\Users\Rajnish\AppData\Local\Programs\Python\Python37 示例2:使用os.getcwd()獲取當前根目錄的GeeksforGeeks工作目錄的方法 #Pythonprogramtoexplainos.getcwd()method           #importingosmodule  importos       #Getthecurrentworking  #directory(CWD)  cwd=os.getcwd()       #Printthecurrentworking   #directory(CWD)  #whichisrootinthiscase print("Currentworkingdirectory:",cwd)  輸出: Currentworkingdirectory:/ 相關用法 Pythonos.dup()用法及代碼示例 Pythonnext()用法及代碼示例 Pythonset()用法及代碼示例 Pythonos._exit()用法及代碼示例 Pythonsys.getrecursionlimit()用法及代碼示例 Pythonsympy.cot()用法及代碼示例 Pythonos.confstr()用法及代碼示例 Pythonos.fchmod()用法及代碼示例 Pythonos.truncate()用法及代碼示例 Pythonsys.getdefaultencoding()用法及代碼示例 Pythonrange()用法及代碼示例 PythonPILgetpixel()用法及代碼示例 PythonPILputpixel()用法及代碼示例 Pythonos.WEXITSTATUS()用法及代碼示例 注:本文由純淨天空篩選整理自Rajnis09大神的英文原創作品 Python|os.getcwd()method。

非經特殊聲明,原始代碼版權歸原作者所有,本譯文的傳播和使用請遵循“署名-相同方式共享4.0國際(CCBY-SA4.0)”協議。



請為這篇文章評分?