Is their way to use a picture/images without it needing to be on my disk (on my computer storage). For example here is my python code
root = Tk()
root.title("Bitcoin Price")
p1 = PhotoImage(file = 'images\Btc.png')
root.iconphoto(False, p1)
As you can see if I was to move this Btc.png (or the file 'images') or rename, etc. the code won't not work.