I have a parent folder named A, which contains my Python script. The script creates a sub folder, also within A.
I'm unsure how I should reference the path when creating the new sub folder because:
I can't use absolute path because each user will have their username as part of the path to the Git repo.
I'm worried about using relative path because I don't know from which folder users will execute the script.
How is this typically handled?