Say I have a file structure that looks like this
root folder/
main.py
-folder a
-script.py
-folder b
-img.png
How could I load the img.png file from script.py?
Should I just have a function in main.py that gets the path of the root folder, and then tac the 'folder a' and 'folder b' bit on?
Thanks for your time.