Friday, October 3, 2025
HomeLanguagesPython | os.path.normpath() method

Python | os.path.normpath() method

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)


Output

/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)


Output: 

C:\\Users
C:\\Users\\Documents
C:\\Users\\admin\\Documents

 

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

RELATED ARTICLES

Most Popular

Dominic
32332 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11868 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11929 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7080 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS