Advertisement
StrongJava

iconbitmap

Oct 29th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #!/opt/local/bin/python3
  2.  
  3. import tkinter
  4.  
  5. window = tkinter.Tk()
  6. window.title("My Program")
  7. window.geometry("300x300")
  8. window.iconbitmap("@bird.xbm")
  9.  
  10. window.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement