ok well I'm working on making a dungeon explorer and I can't get images to work...so far I have this
from Tkinter import *
class App:
def __init__(self, master):
frame = Frame(master)
frame.pack()
canvas = Canvas(frame, width = 225, height = 225)
canvas.pack()
gif1 = PhotoImage(file = 'Fhall.gif')
canvas.create_image(0, 0, image = gif1, anchor = NW)
root = Tk()
d = App(root)
root.geometry('225x225+0+0')
root.resizable(FALSE,FALSE)
root.wait_window()