You can download this code by clicking the button below.
This code is now available for download.
This function returns the absolute path of the given path.
Technology Stack : os
Code Type : Path handler
Code Difficulty : Intermediate
def abspath(path):
import os
return os.path.abspath(path)