I'm confused to as how I would do this. For example if I am referencing pic0.gif on my computer of course all I have to do for something like
def drawx():
myImWin = ImageWin('\Python34\images\pic0.gif',300,300)
Im = FileImage('\Python34\images\pic.gif')
Im.draw(myImWin)
But this would only work on my computer because I know the directory of the pic0.gif. What would I need to do so that it would automatically seek pic0.gif on a different computer with a different directory?