posixpath
Posixpath is a module in Python's standard library that implements path manipulation functions using POSIX semantics. It provides the underlying implementation for POSIX-style path handling, and on POSIX platforms the os.path module is an alias of posixpath.
The module exposes functions for joining, splitting, and normalizing path strings, as well as utilities to inspect
POSIX semantics assume '/' as the path separator, with no drive letters and case-sensitive paths. This contrasts
Example: posixpath.join('/usr', 'local', 'bin') yields '/usr/local/bin'. posixpath.normpath('a/./b/../c') yields 'a/c'.
Posixpath is part of the Python standard library and is implemented in Python itself, making it available