OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.path module is sub module of OS module in Python used for common path name manipulation.
os.path.normpath() method in Python is used to normalize the specified path. All redundant separator and up-level references are collapsed in the process of path normalization.
For example: A//B, A/B/, A/./B and A/foo/../B all will be normalized to A/B.
On Windows operating system, any forward slash (‘/’) in the path is converted to backslash (‘\’).
Syntax: os.path.normpath(path)
Parameter:
path: A path-like object representing a file system path.
Return Type: This method returns a string value which represents the normalized path.
Code #1: Use of os.path.normpath() method
Python3
# 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
Code #2: Use of os.path.normpath() method (On Windows)
Python3
# 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