Python os.path.normpath()
Python os.path.normpath()方法在Python中用于规范化指定的路径。在路径归一化过程中,将所有冗余分隔符和上层引用折叠起来。
例如: A//B , A/B/ , A/./B and A / foo / . . / 所有都将被标准化为A/B。
在Windows操作系统中,路径中的任何正斜杠(‘ / ‘)都会转换为反斜杠(‘ \ ‘)。
语法: os.path.normpath(path)
参数:
path:表示文件系统路径的类路径对象。
返回类型: 此方法返回一个表示规范化路径的字符串值。
示例1
使用 os.path.normpath() 方法
# Python program to explain os.path.normpath() method
# importing os.path module
import os.path
# Path
path = '/home//user/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/./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/Documents
/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