Friday, July 3, 2026
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
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6900 POSTS0 COMMENTS
Nicole Veronica
12015 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6967 POSTS0 COMMENTS