Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. import tkinter
  2.  
  3. app = tkinter.Tk()
  4.  
  5. picture = tkinter.PhotoImage(file = "pic.gif")
  6. label = tkinter.Label(image = picture)
  7.  
  8. label.pack()
  9. app.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement