Preview:
from tkinter import *


root = Tk()
root.title('title')
root.geometry('300x300')
root.iconbitmap(r'icon.ico')  # creating icon

photo = PhotoImage(file='alice.png')
my_label = Label(image=photo)
my_label.pack()


button_quit = Button(root, text="Exit Program", command=root.quit)
button_quit.pack()




root.mainloop()
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter