當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.path.normpath()用法及代碼示例


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。 os.path模塊是Python中OS模塊的子模塊,用於通用路徑名操作。

os.path.normpath()Python中的方法用於規範化指定的路徑。在路徑規範化過程中,所有冗餘分隔符和up-level引用均折疊。
例如: A //B,A /B /,A /./B和A /foo /../B都將被標準化為A /B。在Windows操作係統上,路徑中的任何正斜杠('/')都將轉換為反斜杠('\')。

用法: os.path.normpath(path)

參數:
path:代表文件係統路徑的path-like對象。

返回類型:此方法返回代表標準化路徑的字符串值。

代碼1:用於os.path.normpath()方法

# Python program to explain os.path.normpath() method  
    
# importing os.path module  
import os.path 
  
# Path 
path = '/home//user/Documnets'
  
  
# Normalize the specified path 
# using os.path.normpath() method 
norm_path = os.path.normpath(path) 
  
# Print the normalized path   
print(norm_path) 
  
# Path 
path = '/home/./Documents'
  
  
# Normalize the specified path 
# using os.path.normpath() method 
norm_path = os.path.normpath(path) 
  
# Print the normalized path   
print(norm_path) 
  
# Path 
path = '/home/user/temp/../Documents'
  
# Normalize the specified path 
# using os.path.normpath() method 
norm_path = os.path.normpath(path) 
  
# Print the normalized path   
print(norm_path)
輸出:
/home/user/Documnets
/home/Documents
/home/user/Documents

代碼2:用於os.path.normpath()方法(在Windows上)

# Python program to explain os.path.normpath() method  
    
# importing os.path module  
import os.path 
  
# Path 
path = r'C:/Users'
  
  
# Normalize the specified path 
# using os.path.normpath() method 
norm_path = os.path.normpath(path) 
  
# Print the normalized path   
print(norm_path) 
  
# Path 
path = r'C:\Users\.\Documents'
  
  
# Normalize the specified path 
# using os.path.normpath() method 
norm_path = os.path.normpath(path) 
  
# Print the normalized path   
print(norm_path) 
  
# Path 
path = r'C:\Users\admin\temp\..\Documents'
  
# Normalize the specified path 
# using os.path.normpath() method 
norm_path = os.path.normpath(path) 
  
# Print the normalized path   
print(norm_path)
輸出:
C:\\Users
C:\\Users\\Documents
C:\\Users\\admin\\Documents

參考: https://docs.python.org/3/library/os.path.html



相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.path.normpath() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。