# -*- coding: utf-8 -*- import tkinter as tk root = tk.Tk() root.title("tk3.py") ##################################### img = tk.PhotoImage( file = 'question.gif') lb = tk.Label(root, text = "Any Questions?",\ image = img, compound = tk.BOTTOM) #TOP,BOTTOM,LEFT,RIGHT,CENTER lb.pack() ##################################### root.mainloop()