Python Path Absolute

from patlib import Path
relative = Path("my_path")
absolute = relative.absolute()
aso