python get directory of file of path code example
Example 1: python get filename from path
import os
print(os.path.basename(your_path))
Example 2: python os get dir path
from os import getcwd # only import "getcwd" from os
getcwd() # Get the current working directory