Nama File Python dari Path Absolute

# Basic syntax:
import os
os.path.basename('/path/to/filename.txt')

# Example usage:
os.path.basename('/path/to/filename.txt')
--> filename.txt

# Note, to get the path instead of the filename, use:
os.path.dirname('/path/to/filename.txt')
--> /path/to
Charles-Alexandre Roy