it's so funny that #Python's pathlib.Path overrides the division operator to turn it into a path join

from pathlib import Path

this_directory = pathlib.Path(__file__).parent

funny_cat_image = this_directory / "cats" / "cat123.png"