i have a window and i am trying to add an image to it. the window so far consists of a label entry box and button. i want to add the image below the label but above the entry box button. Here is my code:
master = Tk()
master.wm_title("Lightning Parties")
master.configure(background='lightgreen')
Label(master, text="Staff Login", fg='black', bg='lightgreen', font= ('comicsans', 14)).grid()
Label(master, text="Please enter the password ", fg='black', bg='lightgreen', font=('comicsans', 12)).grid(row=7)
Password= Entry(master)
Password.grid(row=7, column=1)
Button(master, text='Login', command=validateStaff, fg='black', bg='white', font=('comicsans', 12)).grid(row=10, column=1, sticky=W, pady=4)
The image i want to add has the file name 'sonic.png'.