How to get from tuple constructed by using parts in pathlib back to actual string path?
from pathlib import Path
p = Path(path)
parts_tuple = p.parts
parts_tuple = parts_arr[:-4]
We get smth like ('/', 'Users', 'Yohan', 'Documents')
How to turn parts_tuple to a string path - e.g delimit every part by '/' except first array item (because it is root part - "/"). I care to get a string as an output.