last part of file system path python code example
Example 1: python join paths
import os
# Join paths using OS import. Takes any amount of arguments
path = os.path.join('/var/www/public_html', './app/', ".\\my_file.json")
print(path) # /var/www/public_html/app/myfile.json
Example 2: what does filename = path(file).stem python
from pathlib import Path
Path('/root/dir/sub/file.ext').stem
# returns 'file'